1 2 3 4 5 6 7 8 9 10 11 12 13 #! /bin/sh . ../../testenv.sh analyze repro.vhdl elab tb if ghdl_has_feature tb fst; then simulate tb --fst=tb.fst fi if ghdl_has_feature tb vcd; then simulate tb --vcd=tb.vcd fi clean rm -f tb.fst tb.vcd echo "Test successful"
#! /bin/sh . ../../testenv.sh analyze repro.vhdl elab tb if ghdl_has_feature tb fst; then simulate tb --fst=tb.fst fi if ghdl_has_feature tb vcd; then simulate tb --vcd=tb.vcd fi clean rm -f tb.fst tb.vcd echo "Test successful"