blob: d2749807e7828a31c61b8edf8a74e10bcd1ccccf (
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 repr.vhdl
elab repr
if ghdl_has_feature repr ghw; then
simulate repr --wave=repr.ghw
ghw_diff repr
rm -f repr.txt repr.ghw
fi
clean
echo "Test successful"
|