]> Cypherpunks repositories - gostls13.git/commitdiff
test: fix testlib to not pass an empty argument to 6g
authorIan Lance Taylor <iant@golang.org>
Wed, 7 Mar 2012 19:16:58 +0000 (11:16 -0800)
committerIan Lance Taylor <iant@golang.org>
Wed, 7 Mar 2012 19:16:58 +0000 (11:16 -0800)
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

index d3178ccebdd90dc8357f651dda87d1e6985098da..4c7d9578b53ec44e87ecea2dff5003cfd5ee4691 100644 (file)
@@ -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() {