blob: cc3b19ef537409207c302da82b064761e252747c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
. ../../testenv.sh
analyze repro.vhdl
if ghdl_has_feature repro ghw; then
elab_simulate repro --wave=repro.ghw
# How to test the ghw ? Use ghwdump ?
fi
clean
rm -f repro.ghw
echo "Test successful"
|