blob: e182d70ebadc3c1e9286ed014dcb78acc461841a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
if $GHDL --version | grep -q "mcode code generator"; then
analyze repro.vhdl
elab_simulate_failure repro
analyze time_test.vhdl
elab_simulate_failure time_test
fi
clean
echo "Test successful"
|