blob: 88ab9bb5261b24fd640de7692159ec4e085927c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /bin/sh
. ../../testenv.sh
analyze issue1.vhdl
elab_simulate_failure issue1
analyze issue2.vhdl
elab_simulate_failure issue2
clean
export GHDL_STD_FLAGS=-Werror=runtime-error
analyze_failure issue1.vhdl
analyze_failure issue2.vhdl
clean
echo "Test successful"
|