blob: 72fbe3ae23f7c560789e31abae8edd5563721414 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#! /bin/sh
. ../../testenv.sh
#export GHDL_STD_FLAGS=--std=08
analyze main.vhdl
elab_simulate HA_Entity
elab_simulate HA_Config
analyze my_top.vhdl
elab_simulate ha_config
if elab_simulate ha_config my_top; then
echo "failure expected"
exit 1;
fi
clean
echo "Test successful"
|