blob: b3b4ce8b3afffe91091483d662f9e064c22a60ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
. ../../testenv.sh
if $GHDL --version | grep -q mcode; then
$GHDL -i hello.vhdl pkg.vhdl
sleep 1
$GHDL -r --expect-failure hello
fi
clean
echo "Test successful"
|