aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/ghdl-issues/issue2373/testsuite.sh
blob: deb3f234bf5372509065ade3543ab0cdea76f801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

topdir=../..
. $topdir/testenv.sh

run_symbiyosys -fd work  async_test-plus.sby prove || true
if ! grep -q "BMC failed" work/engine_0/logfile.txt; then
    echo "failure expected"
    exit 1
fi

run_symbiyosys -fd work  async_test-star.sby prove || true
if ! grep -q "BMC failed" work/engine_0/logfile.txt; then
    echo "failure expected"
    exit 1
fi

clean
echo OK