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

. ../../testenv.sh

for t in recv; do
    analyze -fpsl $t.vhdl tb_$t.vhdl
    elab_simulate tb_$t
    clean

    synth -fpsl $t.vhdl -e $t > syn_$t.vhdl
    analyze syn_$t.vhdl tb_$t.vhdl
    elab_simulate tb_$t
    clean
done

echo "Test successful"