1
0
mirror of https://github.com/golang/go synced 2024-11-21 13:54:43 -07:00

test: fix run-arm to count bugs correctly

TBR=kaib
CC=golang-dev
https://golang.org/cl/1080041
This commit is contained in:
Russ Cox 2010-05-03 13:24:26 -07:00
parent 4d1b1574af
commit 28db812c88

View File

@ -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