1
0
mirror of https://github.com/golang/go synced 2024-09-24 07:10:12 -06:00

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
This commit is contained in:
Ian Lance Taylor 2012-03-07 11:16:58 -08:00
parent a6ce691bd4
commit 72faa0303e

View 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() {