blob: e1b39355647080feffafae011c760904813c2756 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
. ../../testenv.sh
analyze_failure foo.vhdl
export GHDL_STD_FLAGS=--std=08
for f in foo slv01 numstd01; do
analyze $f.vhdl
elab_simulate $f
done
clean
echo "Test successful"
|