blob: 987cd5a920b30e3b1cd115fa7ac9c45f841b14f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS=--std=08
analyze_failure repro.vhdl
analyze crc_pkg.vhdl
analyze_failure 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"
|