blob: 80d20016fc1664549cfeff017954cd07ef4e67f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#! /bin/sh
. ../../testenv.sh
analyze test_ip.vhdl
elab_simulate_failure test_ip
analyze st1.vhdl
elab_simulate_failure st1
analyze st2.vhdl
elab_simulate_failure st2
clean
export GHDL_STD_FLAGS=--std=08
analyze st3.vhdl
elab_simulate_failure st3
analyze st4.vhdl
elab_simulate_failure st4
clean
echo "Test successful"
|