3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-11-02 04:27:53 +00:00

added vloghtb test_febe.sh

This commit is contained in:
Clifford Wolf 2015-05-17 19:54:00 +02:00
parent 3ecb2bf067
commit 83499dc1ba
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#!/bin/bash
set -e
source common.sh
f=$1
n=$(basename ${f%.v})
test_febe vlog1 "synth" ".v" "write_verilog" "read_verilog" "-ignore_div_by_zero" $n $f
test_febe vlog2 "synth -run coarse" ".v" "write_verilog" "read_verilog -icells" "-ignore_div_by_zero" $n $f
test_febe blif "synth; splitnets -ports" ".blif" "write_blif -icells" "read_blif" "-ignore_div_by_zero" $n $f
exit 0