From: Russ Cox Date: Mon, 3 May 2010 20:24:26 +0000 (-0700) Subject: test: fix run-arm to count bugs correctly X-Git-Tag: weekly.2010-05-04~12 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=28db812c88e8ea5c515f4b050dcb37b0ecb2006e;p=gostls13.git test: fix run-arm to count bugs correctly TBR=kaib CC=golang-dev https://golang.org/cl/1080041 --- diff --git a/test/run-arm b/test/run-arm index 4a469ceae1..c7545ae0e9 100755 --- a/test/run-arm +++ b/test/run-arm @@ -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