aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-05-03 13:24:26 -0700
committerRuss Cox <rsc@golang.org>2010-05-03 13:24:26 -0700
commit28db812c88e8ea5c515f4b050dcb37b0ecb2006e (patch)
tree888e64606aa347657f4557e843957f69be8bb561
parent4d1b1574af87a123dfa3f82f8f1464120fc79d5b (diff)
downloadgo-28db812c88e8ea5c515f4b050dcb37b0ecb2006e.tar.gz
go-28db812c88e8ea5c515f4b050dcb37b0ecb2006e.zip
test: fix run-arm to count bugs correctly
TBR=kaib CC=golang-dev https://golang.org/cl/1080041
-rwxr-xr-xtest/run-arm4
1 files changed, 2 insertions, 2 deletions
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