blob: daa633a6cb44d176216aed446963895497c9a40f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
. ../../testenv.sh
analyze test_string.vhdl
elab test_string
if ghdl_has_feature test_string ghw; then
simulate test_string --wave=sim.ghw --stop-time=20ns
ghw_diff sim
rm -f sim.txt sim.ghw
fi
clean
echo "Test successful"
|