blob: 7f3c7736031af959231afb23ca402753d765982f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#! /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"
|