bsc/tests/run-evm-tests.sh

15 lines
299 B
Bash
Raw Normal View History

2024-01-10 11:58:27 +03:00
#!/usr/bin/env bash
cd ..
git apply tests/0001-diff-go-ethereum.patch
cd tests
go test -run . -v >test.log
PASS=`cat test.log |grep "PASS:" |wc -l`
cat test.log|grep FAIL > fail.log
FAIL=`cat fail.log |grep "FAIL:" |wc -l`
echo "PASS",$PASS,"FAIL",$FAIL
if [ $FAIL -ne 0 ]
then
cat fail.log
fi