mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #5034 from YosysHQ/emil/liberty-fix-tests
liberty: fix tests
This commit is contained in:
commit
057dbbdca3
|
|
@ -1,16 +1,17 @@
|
|||
#!/usr/bin/env bash
|
||||
set -e
|
||||
set -eo pipefail
|
||||
|
||||
for x in *.lib; do
|
||||
echo "Testing on $x.."
|
||||
../../yosys -p "read_verilog small.v; synth -top small; dfflibmap -info -liberty ${x}" -ql ${x%.lib}.log
|
||||
../../yosys-filterlib - $x 2>/dev/null > $x.filtered
|
||||
../../yosys-filterlib -verilogsim $x > $x.verilogsim
|
||||
diff $x.filtered $x.filtered.ok && diff $x.verilogsim $x.verilogsim.ok
|
||||
done || exit 1
|
||||
diff $x.filtered $x.filtered.ok
|
||||
diff $x.verilogsim $x.verilogsim.ok
|
||||
done
|
||||
|
||||
for x in *.ys; do
|
||||
echo "Running $x.."
|
||||
../../yosys -q -s $x -l ${x%.ys}.log
|
||||
done || exit 1
|
||||
done
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue