aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1077/testsuite.sh
blob: b6f55d91d2253d844341d976a9b7e3aa8b3a309b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

. ../../testenv.sh

GHDL_STD_FLAGS=--std=08
for t in ent; do
    synth $t.vhdl -e $t > syn_$t.vhdl
    analyze syn_$t.vhdl
    clean
done

echo "Test successful"