Merge pull request #2817 from YosysHQ/claire/fixemails
[yosys.git] / tests / vloghtb / test_febe.sh
1 #!/bin/bash
2
3 set -e
4 source common.sh
5
6 f=$1
7 n=$(basename ${f%.v})
8
9 test_febe vlog1 "synth" ".v" "write_verilog" "read_verilog" "-ignore_div_by_zero" $n $f
10 test_febe vlog2 "synth -run coarse" ".v" "write_verilog" "read_verilog -icells" "-ignore_div_by_zero" $n $f
11 test_febe blif "synth; splitnets -ports" ".blif" "write_blif" "read_blif" "-ignore_div_by_zero" $n $f
12
13 exit 0