blob: aad3f12b3c24b4310143ea3f9d3e39516b8457f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
. ../../testenv.sh
analyze bug.vhdl
elab_simulate ent
clean
if ! cmp file.txt file.raw; then
echo "Comparison mismatch"
exit 1
fi
rm -f file.txt file.raw
echo "Test successful"
|