blob: 5bc1c80b7024b6f7c502543e4f4a59eecdedf4c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#! /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"
ls -l
exit 1
fi
echo "Test successful"
|