blob: 5fdbeeef643711d89aaf898fe5b203483d03067b (
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
analyze mwe_failing/counter.vhd
analyze mwe_failing/mwe.vhd
elab_simulate mwe --stop-time=100us
analyze mwe_working/counter.vhd
analyze mwe_working/mwe.vhd
if ghdl_has_feature mwe ghw; then
elab_simulate mwe --stop-time=100us --wave=output.ghw
fi
analyze mwe2/mwe.vhd
elab_simulate mwe --stop-time=100us
clean
echo "Test successful"
|