blob: 84a22c0a7816996499e1d730a4531d66ebbd99d9 (
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
GHDL_STD_FLAGS=--workdir=work1
mkdir work1
analyze simple.vhdl
elab_simulate simple
clean
rmdir work1
# Some simple checks
if test -f simple || test -f 'e~simple.o'; then
echo "Not correctly cleaned"
exit 1
fi
echo "Test successful"
|