blob: 2f9720f3c1b333d2163c8eeeeb6767b9fb2360fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS=--std=08
analyze abc.vhdl
analyze abc_tb.vhdl
elab_simulate abc_tb
analyze abc_tb1.vhdl
elab_simulate abc_tb1
analyze abc_tb2.vhdl
elab_simulate abc_tb2
analyze abc_tb3.vhdl
elab_simulate abc_tb3
clean
echo "Test successful"
|