From: Ian Lance Taylor Date: Wed, 7 Mar 2012 19:16:58 +0000 (-0800) Subject: test: fix testlib to not pass an empty argument to 6g X-Git-Tag: weekly.2012-03-13~125 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=72faa0303e4330bbdfd1a79f493ba8529f8208a2;p=gostls13.git 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 --- 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() {