]> Cypherpunks repositories - gostls13.git/commitdiff
test: fix run-arm to count bugs correctly
authorRuss Cox <rsc@golang.org>
Mon, 3 May 2010 20:24:26 +0000 (13:24 -0700)
committerRuss Cox <rsc@golang.org>
Mon, 3 May 2010 20:24:26 +0000 (13:24 -0700)
TBR=kaib
CC=golang-dev
https://golang.org/cl/1080041

test/run-arm

index 4a469ceae18189108711ac72567b6905693170eb..c7545ae0e9e52aba1c9d63b1a886ed08500d615f 100755 (executable)
@@ -90,8 +90,8 @@ then
        failed=1
 fi
 
-notinbugs=$(sed '/^== bugs/q' run.out | grep -c '^BUG')
-inbugs=$(sed '1,/^== bugs/d' run.out | grep -c '^BUG')
+notinbugs=$(sed '/== bugs/q' run.out | grep -c '^BUG')
+inbugs=$(sed '1,/== bugs/d' run.out | grep -c '^BUG')
 
 echo 2>&1 $inbugs known bugs';' $notinbugs unexpected bugs$diffmsg