blob: 2cc9ca2c969650774df12072b5cabe7687e65ffa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
analyze mydesign.vhdl
elab myentity
if ghdl_has_feature myentity ghw; then
elab_simulate myentity --wave=dump.ghw | tee mydesign.out
ghw_diff dump
rm -f mydesign.out dump.txt dump.ghw
fi
clean
echo "Test successful"
|