blob: 4a7a753c41484f5e8bb77b6d0f61e0c15cd957cb (
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 repro.vhdl
elab_simulate repro
analyze repro2.vhdl
elab_simulate repro2
analyze --work=nuand util.vhdl
analyze fx3_model_unmodified.vhdl
elab_simulate fx3_model
clean nuand
clean
echo "Test successful"
|