mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-07 06:44:06 +00:00
Testing fifo things in CI
Turns out the bigtest golden ref is failing a_count_diff, need to fix that before removing the default statement. Base example code is fine. New shell script to run default case and then nofullskip. Expects returncode=2 after running nofullskip.
This commit is contained in:
parent
ed9b291d2b
commit
b2d0368e26
8
docs/examples/fifo/fifo.sh
Normal file
8
docs/examples/fifo/fifo.sh
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
python3 $SBY_MAIN -f fifo.sby && python3 $SBY_MAIN -f fifo.sby nofullskip
|
||||||
|
|
||||||
|
if [[ $? -ne 2 ]] ; then
|
||||||
|
echo "Unexpected result"
|
||||||
|
exit 1
|
||||||
|
fi
|
|
@ -17,6 +17,7 @@ mode bmc
|
||||||
--
|
--
|
||||||
bigtest: depth 120
|
bigtest: depth 120
|
||||||
~bigtest: depth 10
|
~bigtest: depth 10
|
||||||
|
nofullskip: expect fail
|
||||||
|
|
||||||
[engines]
|
[engines]
|
||||||
smtbmc boolector
|
smtbmc boolector
|
||||||
|
|
Loading…
Reference in a new issue