blob: 7edc76ef1561e1984695a3f0d4cea8a397d9b513 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS=--std=08
analyze test_issue_ok.vhdl
elab_simulate test_issue_ok --assert-level=error
clean
analyze test_issue_err1.vhdl
elab_simulate_failure test_issue_err1 --assert-level=error
clean
echo "Test successful"
|