From 72faa0303e4330bbdfd1a79f493ba8529f8208a2 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 7 Mar 2012 11:16:58 -0800 Subject: [PATCH] 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 https://golang.org/cl/5771043 --- test/testlib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testlib b/test/testlib index d3178ccebd..4c7d9578b5 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() {