aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2011-07-06 17:46:36 +1000
committerRob Pike <r@golang.org>2011-07-06 17:46:36 +1000
commit64228e36a44bfa8546293918b8fb8f15d7a46453 (patch)
treec2b5c7119ac7fea055d6e26932a192598fa8f93f
parent33705ddea11cd430b1aadc630f190f005126ea04 (diff)
downloadgo-64228e36a44bfa8546293918b8fb8f15d7a46453.tar.gz
go-64228e36a44bfa8546293918b8fb8f15d7a46453.zip
exp/template: silence test noise (but add a flag to put it back)
Also delete a TODO and clean up a little evaluation code. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4643071
-rw-r--r--src/pkg/exp/template/exec.go6
-rw-r--r--src/pkg/exp/template/parse_test.go5
-rw-r--r--src/pkg/exp/template/set_test.go2
3 files changed, 6 insertions, 7 deletions
diff --git a/src/pkg/exp/template/exec.go b/src/pkg/exp/template/exec.go
index b8cfb54806..6f171da384 100644
--- a/src/pkg/exp/template/exec.go
+++ b/src/pkg/exp/template/exec.go
@@ -200,8 +200,7 @@ func (s *state) evalCommand(data reflect.Value, cmd *commandNode, final reflect.
return s.evalFieldOrCall(data, n.ident, cmd.args, final)
}
if len(cmd.args) > 1 || final.IsValid() {
- // TODO: functions
- s.errorf("can't give argument to non-method %s", cmd.args[0])
+ s.errorf("can't give argument to non-function %s", cmd.args[0])
}
switch word := cmd.args[0].(type) {
case *dotNode:
@@ -224,9 +223,8 @@ func (s *state) evalCommand(data reflect.Value, cmd *commandNode, final reflect.
}
case *stringNode:
return reflect.ValueOf(word.text)
- default:
- s.errorf("can't handle command %q", firstWord)
}
+ s.errorf("can't handle command %q", firstWord)
panic("not reached")
}
diff --git a/src/pkg/exp/template/parse_test.go b/src/pkg/exp/template/parse_test.go
index 70c9f5a64c..34b0da6ebf 100644
--- a/src/pkg/exp/template/parse_test.go
+++ b/src/pkg/exp/template/parse_test.go
@@ -5,11 +5,12 @@
package template
import (
+ "flag"
"fmt"
"testing"
)
-const dumpErrors = true
+var debug = flag.Bool("debug", false, "show the errors produced by the tests")
type numberTest struct {
text string
@@ -193,7 +194,7 @@ func TestParse(t *testing.T) {
continue
case err != nil && !test.ok:
// expected error, got one
- if dumpErrors {
+ if *debug {
fmt.Printf("%s: %s\n\t%s\n", test.name, test.input, err)
}
continue
diff --git a/src/pkg/exp/template/set_test.go b/src/pkg/exp/template/set_test.go
index 873d261b3d..c0115ec0ad 100644
--- a/src/pkg/exp/template/set_test.go
+++ b/src/pkg/exp/template/set_test.go
@@ -49,7 +49,7 @@ func TestSetParse(t *testing.T) {
continue
case err != nil && !test.ok:
// expected error, got one
- if dumpErrors {
+ if *debug {
fmt.Printf("%s: %s\n\t%s\n", test.name, test.input, err)
}
continue