aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/sanity/002hello2008/testsuite.sh
blob: c8ce4478fb8db718a26166d68f0b8b3e90ca4d1e (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

GHDL_STD_FLAGS=--std=08
analyze hello.vhdl
elab_simulate hello

# Check that vhdl-08 is used
analyze err93.vhdl

clean

# Check that err93 is not valid in vhdl-93
GHDL_STD_FLAGS=
analyze_failure err93.vhdl

clean

echo "test successful"