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

. ../../testenv.sh

GHDL_STD_FLAGS=-fsynopsys

for t in sns01; do
    synth $t.vhdl -e $t > syn_$t.vhdl
    # No analysis because of conflict between numeric_std.unsigned and
    # std_logic_arith.unsigned
#    analyze syn_$t.vhdl
    clean
done

synth_analyze sns02
clean

echo "Test successful"