summaryrefslogtreecommitdiff
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
commitaba5fa171afb3acacc97502c1a8563ce273e8e75 (patch)
treecc650e012870b5650277a886cf4b753b710685a2
parent3fbde649bf006ba61f91a485df6abfd6df020604 (diff)
downloadgolang-aba5fa171afb3acacc97502c1a8563ce273e8e75.tar.gz
test: fix run-arm to count bugs correctly
TBR=kaib CC=golang-dev http://codereview.appspot.com/1080041
-rwxr-xr-xtest/run-arm4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/run-arm b/test/run-arm
index 4a469ceae..c7545ae0e 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