summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2012-03-07 01:54:39 -0500
committerRuss Cox <rsc@golang.org>2012-03-07 01:54:39 -0500
commitf30aac7243296cd0cdadb944bb4b33980a1b3e7a (patch)
tree31e8e0e7298c00f105b640fa6342c4ecb71d6271 /test
parent76fa5fdd23b4674249e6b1c952691e49e01307e4 (diff)
downloadgo-f30aac7243296cd0cdadb944bb4b33980a1b3e7a.tar.gz
test: invoke go command in run.go
Lets us run multifile tests and tests with arguments. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5753068
Diffstat (limited to 'test')
-rw-r--r--test/cmplxdivide.go2
-rw-r--r--test/run.go109
-rw-r--r--test/testlib16
3 files changed, 70 insertions, 57 deletions
diff --git a/test/cmplxdivide.go b/test/cmplxdivide.go
index 461ee9796..92a98356d 100644
--- a/test/cmplxdivide.go
+++ b/test/cmplxdivide.go
@@ -1,4 +1,4 @@
-// $G $D/$F.go $D/cmplxdivide1.go && $L $D/$F.$A && ./$A.out
+// run cmplxdivide1.go
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
diff --git a/test/run.go b/test/run.go
index 593e4ade6..34ff57b74 100644
--- a/test/run.go
+++ b/test/run.go
@@ -210,6 +210,8 @@ func runTests() {
}
}
+var cwd, _ = os.Getwd()
+
func (t *test) goFileName() string {
return filepath.Join(t.dir, t.gofile)
}
@@ -237,7 +239,13 @@ func (t *test) run() {
if strings.HasPrefix(action, "//") {
action = action[2:]
}
- action = strings.TrimSpace(action)
+
+ var args []string
+ f := strings.Fields(action)
+ if len(f) > 0 {
+ action = f[0]
+ args = f[1:]
+ }
switch action {
case "cmpout":
@@ -256,67 +264,53 @@ func (t *test) run() {
err = ioutil.WriteFile(filepath.Join(t.tempDir, t.gofile), srcBytes, 0644)
check(err)
-
- cmd := exec.Command("go", "tool", gc, "-e", "-o", "a."+letter, t.gofile)
- var buf bytes.Buffer
- cmd.Stdout = &buf
- cmd.Stderr = &buf
- cmd.Dir = t.tempDir
- err = cmd.Run()
- out := buf.String()
-
- if action == "errorcheck" {
- t.err = t.errorCheck(out)
- return
+
+ useTmp := true
+ runcmd := func(args ...string) ([]byte, error) {
+ cmd := exec.Command(args[0], args[1:]...)
+ var buf bytes.Buffer
+ cmd.Stdout = &buf
+ cmd.Stderr = &buf
+ if useTmp {
+ cmd.Dir = t.tempDir
+ }
+ cmd.Env = append(cmd.Env, "GOOS="+runtime.GOOS, "GOARCH="+runtime.GOARCH)
+ err := cmd.Run()
+ return buf.Bytes(), err
}
- if err != nil {
- t.err = fmt.Errorf("build = %v (%q)", err, out)
- return
- }
+ long := filepath.Join(cwd, t.goFileName())
+ switch action {
+ default:
+ t.err = fmt.Errorf("unimplemented action %q", action)
- if action == "compile" {
+ case "errorcheck":
+ out, _ := runcmd("go", "tool", gc, "-e", "-o", "a."+letter, long)
+ t.err = t.errorCheck(string(out), long, t.gofile)
return
- }
-
- if action == "build" || action == "run" {
- buf.Reset()
- cmd = exec.Command("go", "tool", ld, "-o", "a.out", "a."+letter)
- cmd.Stdout = &buf
- cmd.Stderr = &buf
- cmd.Dir = t.tempDir
- err = cmd.Run()
- out = buf.String()
+
+ case "compile":
+ out, err := runcmd("go", "tool", gc, "-e", "-o", "a."+letter, long)
if err != nil {
- t.err = fmt.Errorf("link = %v (%q)", err, out)
- return
+ t.err = fmt.Errorf("%s\n%s", err, out)
}
- if action == "build" {
- return
+
+ case "build":
+ out, err := runcmd("go", "build", "-o", "a.exe", long)
+ if err != nil {
+ t.err = fmt.Errorf("%s\n%s", err, out)
}
- }
-
- if action == "run" {
- buf.Reset()
- cmd = exec.Command(filepath.Join(t.tempDir, "a.out"))
- cmd.Stdout = &buf
- cmd.Stderr = &buf
- cmd.Dir = t.tempDir
- cmd.Env = append(cmd.Env, "GOARCH="+runtime.GOARCH)
- err = cmd.Run()
- out = buf.String()
+
+ case "run":
+ useTmp = false
+ out, err := runcmd(append([]string{"go", "run", t.goFileName()}, args...)...)
if err != nil {
- t.err = fmt.Errorf("run = %v (%q)", err, out)
- return
+ t.err = fmt.Errorf("%s\n%s", err, out)
}
-
- if out != t.expectedOutput() {
- t.err = fmt.Errorf("output differs; got:\n%s", out)
+ if string(out) != t.expectedOutput() {
+ t.err = fmt.Errorf("incorrect output\n%s", out)
}
- return
}
-
- t.err = fmt.Errorf("unimplemented action %q", action)
}
func (t *test) String() string {
@@ -337,7 +331,7 @@ func (t *test) expectedOutput() string {
return string(b)
}
-func (t *test) errorCheck(outStr string) (err error) {
+func (t *test) errorCheck(outStr string, full, short string) (err error) {
defer func() {
if *verbose && err != nil {
log.Printf("%s gc output:\n%s", t, outStr)
@@ -356,11 +350,16 @@ func (t *test) errorCheck(outStr string) (err error) {
}
}
+ // Cut directory name.
+ for i := range out {
+ out[i] = strings.Replace(out[i], full, short, -1)
+ }
+
for _, we := range t.wantedErrors() {
var errmsgs []string
errmsgs, out = partitionStrings(we.filterRe, out)
if len(errmsgs) == 0 {
- errs = append(errs, fmt.Errorf("errchk: %s:%d: missing expected error: %s", we.file, we.lineNum, we.reStr))
+ errs = append(errs, fmt.Errorf("%s:%d: missing error %q", we.file, we.lineNum, we.reStr))
continue
}
matched := false
@@ -372,7 +371,7 @@ func (t *test) errorCheck(outStr string) (err error) {
}
}
if !matched {
- errs = append(errs, fmt.Errorf("errchk: %s:%d: error(s) on line didn't match pattern: %s", we.file, we.lineNum, we.reStr))
+ errs = append(errs, fmt.Errorf("%s:%d: no match for %q in%s", we.file, we.lineNum, we.reStr, strings.Join(out, "\n")))
continue
}
}
@@ -384,7 +383,7 @@ func (t *test) errorCheck(outStr string) (err error) {
return errs[0]
}
var buf bytes.Buffer
- buf.WriteString("Multiple errors:\n")
+ fmt.Fprintf(&buf, "\n")
for _, err := range errs {
fmt.Fprintf(&buf, "%s\n", err.Error())
}
diff --git a/test/testlib b/test/testlib
index 2e4fefc8c..d3178cceb 100644
--- a/test/testlib
+++ b/test/testlib
@@ -14,7 +14,21 @@ build() {
}
run() {
- $G $D/$F.go && $L $F.$A && ./$A.out "$@"
+ gofiles=""
+ ingo=true
+ while $ingo; do
+ case "$1" in
+ *.go)
+ gofiles="$gofiles $1"
+ shift
+ ;;
+ *)
+ ingo=false
+ ;;
+ esac
+ done
+
+ $G $D/$F.go "$gofiles" && $L $F.$A && ./$A.out "$@"
}
cmpout() {