blob: 37b22b12b8386c20f0293db3aac3e61f31f71213 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS=--std=08
analyze_failure repro1.vhdl
$GHDL -s $GHDL_STD_FLAGS repro2.vhdl
analyze tb.vhdl
elab_simulate test_pattern_generator_tb --stop-time=100ns
clean
echo "Test successful"
|