blob: c4cd7228a3684abe1212d46a3f7057a795aa5fc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh
. ../../testenv.sh
GHDL_STD_FLAGS=--std=08
analyze repro.vhdl
elab_simulate repro --assert-level=error
analyze repro1.vhdl
elab_simulate repro1
clean
echo "Test successful"
|