aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/lib01/testsuite.sh
blob: a24d25f2fc08a56498e05b2131eaaf3f55af5fc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /bin/sh

. ../../testenv.sh

analyze --work=mylib and2.vhdl
analyze and3.vhdl tb_and3.vhdl
elab_simulate tb_and3
clean
clean mylib

synth --work=work and3.vhdl --work=mylib and2.vhdl --work=work -e and3 > syn_and3.vhdl
analyze --work=mylib and2.vhdl
analyze syn_and3.vhdl tb_and3.vhdl
elab_simulate tb_and3
clean
clean mylib

echo "Test successful"