blob: be808afa2a8f0f0d3f0555d03ea44642a25c3069 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /bin/sh
. ../../testenv.sh
GHDL_STD_FLAGS="--std=08 -fpsl"
analyze cover_report2.vhd
elab_simulate cover_report2
# Submitted case was not correct.
analyze_failure cover_report.vhd
# Parenthesis not allowed in sequences.
analyze_failure cover_report3.vhd
analyze cover_report1.vhd
elab_simulate cover_report1
clean
echo "Test successful"
|