blob: 08e29edfc6ce98960aa7bfdc03158337547f6c5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
GHDL_STD_FLAGS=--std=87
analyze concat2.vhdl
elab_simulate_failure concat
clean
GHDL_STD_FLAGS=--std=93
analyze concat2.vhdl
elab_simulate concat
clean
echo "Test successful"
|