mirror of https://github.com/YosysHQ/yosys.git
don't use sed -i because it won't work on macos
This commit is contained in:
parent
b7c19b1c88
commit
0b0123e003
|
@ -7,3 +7,4 @@
|
|||
/plugin.so.dSYM
|
||||
/temp
|
||||
/smtlib2_module.smt2
|
||||
/smtlib2_module-filtered.smt2
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -ex
|
||||
../../yosys -q -p 'read_verilog -formal smtlib2_module.v; prep; write_smt2 smtlib2_module.smt2'
|
||||
sed -i 's/; SMT-LIBv2 description generated by Yosys .*/; SMT-LIBv2 description generated by Yosys $VERSION/' smtlib2_module.smt2
|
||||
diff -au smtlib2_module-expected.smt2 smtlib2_module.smt2
|
||||
sed 's/; SMT-LIBv2 description generated by Yosys .*/; SMT-LIBv2 description generated by Yosys $VERSION/' smtlib2_module.smt2 > smtlib2_module-filtered.smt2
|
||||
diff -au smtlib2_module-expected.smt2 smtlib2_module-filtered.smt2
|
||||
|
|
Loading…
Reference in New Issue