blob: 8e87fd9e54a8fc80f5f9d74b014a86bf438f4534 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#! /bin/sh
. ../../testenv.sh
mkdir dir1 dir2 || true
cd dir1
analyze ../hello.vhdl
elab_simulate hello
cd ../dir2
elab_simulate --workdir=../dir1 hello
cd ..
rm -rf dir1 dir2
echo "Test successful"
|