summaryrefslogtreecommitdiff
path: root/test/testlib
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2012-09-24 00:06:31 -0400
committerRuss Cox <rsc@golang.org>2012-09-24 00:06:31 -0400
commit7ea1eaee177e135dcaa14f3b3750c2cda7fa23ba (patch)
tree11219d51de8433f5cf73934b11c981cfd5210012 /test/testlib
parentaf6fc658fed9ed8f601951c101f9fdcc38cca86a (diff)
downloadgo-7ea1eaee177e135dcaa14f3b3750c2cda7fa23ba.tar.gz
test: minor fixes in run and testlib
Can tell this doesn't get run very often, but it is still important for when you've broken everything else. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/6547065
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 90f400dd8..29de7672c 100644
--- a/test/testlib
+++ b/test/testlib
@@ -12,7 +12,7 @@ compile() {
compiledir() {
for gofile in $D/$F.dir/*.go
do
- $G ${gofile} || return 1
+ $G -I. "$gofile" || return 1
done
}