blob: e67643f7b9dc2b29ea1b196fa26da62265b9666e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS=--std=08
analyze_failure repro.vhdl
analyze_failure crc_pkg.vhdl wbcrc_syn.vhdl
export GHDL_STD_FLAGS="--std=08 -frelaxed"
analyze repro.vhdl
elab_simulate repro
analyze crc_pkg.vhdl wbcrc_syn.vhdl
clean
echo "Test successful"
|