blob: a9a64b8f6e0c62028b82ed8a7a8b08ebb6b93d7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#! /bin/sh
. ../../testenv.sh
analyze econcat1.vhdl
elab_simulate econcat1
analyze econcat2.vhdl
elab_simulate econcat2
clean
GHDL_STD_FLAGS="--std=87"
analyze econcat1_87.vhdl
elab_simulate econcat1_87
analyze econcat2_87.vhdl
elab_simulate econcat2_87
clean
echo "Test successful"
|