summaryrefslogtreecommitdiff
path: root/test/testlib
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2012-03-07 11:16:58 -0800
committerIan Lance Taylor <iant@golang.org>2012-03-07 11:16:58 -0800
commitf224abe25f064bc775a30107f417a0c209e7f964 (patch)
tree79c02478b8f0f2b2a4a4c49c7bb71b06e532cdef /test/testlib
parentf4e5963366da95071d29ad7500ba18ff20b0cb7c (diff)
downloadgo-f224abe25f064bc775a30107f417a0c209e7f964.tar.gz
test: fix testlib to not pass an empty argument to 6g
This change is necessary to make the run shell script work again, but it is not sufficient as bug424.go's execution line does not name the package that it imports. R=golang-dev, gri, rsc CC=golang-dev http://codereview.appspot.com/5771043
Diffstat (limited to 'test/testlib')
-rw-r--r--test/testlib2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testlib b/test/testlib
index d3178cceb..4c7d9578b 100644
--- a/test/testlib
+++ b/test/testlib
@@ -28,7 +28,7 @@ run() {
esac
done
- $G $D/$F.go "$gofiles" && $L $F.$A && ./$A.out "$@"
+ $G $D/$F.go $gofiles && $L $F.$A && ./$A.out "$@"
}
cmpout() {