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