blob: a8251ed8cb853bec4436a5d5c31037ba94b13eda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /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
elab_simulate mwe --stop-time=100us --wave=output.ghw
clean
echo "Test successful"
|