blob: 8c0b8d5ac73d4e23b1309a8f3b2349e8538a799a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
. ../../testenv.sh
GHDL_STD_FLAGS=--std=08
analyze repro1.vhdl
if ghdl_has_feature repro1 dump-rti; then
elab_simulate repro1 --dump-rti
fi
analyze repro3.vhdl
elab_simulate repro3 --trace-signals --stop-time=0ns > /dev/null
clean
echo "Test successful"
|