From c73f4e44c96310540434d0b9cc81e969c6430b90 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 11 Jul 2021 14:12:50 +0200 Subject: Fix the small test bench for Vericert --- test/test_all.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'test/test_all.sh') diff --git a/test/test_all.sh b/test/test_all.sh index 6b67d27..2d78890 100755 --- a/test/test_all.sh +++ b/test/test_all.sh @@ -21,6 +21,7 @@ test_command() { test_command iverilog test_command gcc +test_command vericert echo "--------------------------------------------------" @@ -30,13 +31,13 @@ for cfile in $test_dir/*.c; do gcc -o $outbase.gcc $cfile >/dev/null 2>&1 $outbase.gcc expected=$? - ./bin/vericert -fschedule -drtl -o $outbase.v $cfile >/dev/null 2>&1 + vericert -fschedule -drtl -o $outbase.v $cfile >/dev/null 2>&1 if [[ ! -f $outbase.v ]]; then echo "ERROR" continue fi iverilog -o $outbase.iverilog $outbase.v - actual=$($outbase.iverilog | sed -E -e 's/[^0-9]+([0-9]+)/\1/') + actual=$($outbase.iverilog | tail -n1 | sed -E -e 's/[^0-9]+([0-9]+)/\1/') if [[ $expected = $actual ]]; then echo "OK" else -- cgit