diff options
Diffstat (limited to 'test/nul1.go')
-rw-r--r-- | test/nul1.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/nul1.go b/test/nul1.go index 5e4596331..9cf51125b 100644 --- a/test/nul1.go +++ b/test/nul1.go @@ -1,4 +1,4 @@ -// [ $GOOS != nacl ] || exit 0 # NaCl runner elides NUL in output +// [ "$GORUN" == "" ] || exit 0 # Android runner gets confused by the NUL output // $G $D/$F.go && $L $F.$A && ./$A.out >tmp.go && // errchk $G -e tmp.go // rm -f tmp.go @@ -24,7 +24,7 @@ func main() { if len(s) != 2 || s[0] != 0xc2 || s[1] != 0xff || len(t) != 2 || t[0] != 0xd0 || t[1] != 0xfe || len(u) != 3 || u[0] != 0xab || u[1] != 0x00 || u[2] != 0xfc { - println("BUG: non-UTF-8 string mangled"); + println("BUG: non-UTF-8 string mangled") os.Exit(2) } @@ -47,7 +47,7 @@ var yy = ` + "`in raw string \xff foo`" + ` // ERROR "UTF-8" // in comment ` + "\xe2\x80\x01" + ` // ERROR "UTF-8" -/* in other comment ` + "\xe0\x00\x00" + ` */ // ERROR "UTF-8" +/* in other comment ` + "\xe0\x00\x00" + ` */ // ERROR "UTF-8|NUL" /* in variable name */ var z` + "\xc1\x81" + ` int // ERROR "UTF-8" |