blob: 621e78d145808249fb1108dff2459de61e5884ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
. ../../testenv.sh
analyze --work=mylib and2.vhdl
analyze and3.vhdl tb_and3.vhdl
elab_simulate tb_and3
clean
synth --work=mylib and2.vhdl --work=work and3.vhdl -e and3 > syn_and3.vhdl
analyze syn_and3.vhdl tb_and3.vhdl
elab_simulate tb_and3
clean
clean mylib
echo "Test successful"
|