blob: b38f802caf9ff15ae0bad71698ab2b30c0048e9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
analyze repro.vhdl
elab repro
if ghdl_has_feature repro ghw; then
simulate repro --wave=repro.ghw | tee repro.out
ghw_diff repro
rm -f repro.out repro.txt repro.ghw
fi
clean
echo "Test successful"
|