Commit 28db812c authored by Russ Cox's avatar Russ Cox

test: fix run-arm to count bugs correctly

TBR=kaib
CC=golang-dev
https://golang.org/cl/1080041
parent 4d1b1574
...@@ -90,8 +90,8 @@ then ...@@ -90,8 +90,8 @@ then
failed=1 failed=1
fi fi
notinbugs=$(sed '/^== bugs/q' run.out | grep -c '^BUG') notinbugs=$(sed '/== bugs/q' run.out | grep -c '^BUG')
inbugs=$(sed '1,/^== bugs/d' 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 echo 2>&1 $inbugs known bugs';' $notinbugs unexpected bugs$diffmsg
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment