blob: 166e4c7045bd367856232084d029b47a250dfba5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
. ../../testenv.sh
synth --expect-failure ent1.vhdl -e
for t in ent2; do
synth $t.vhdl -e $t > syn_$t.vhdl
analyze syn_$t.vhdl
clean
done
echo "Test successful"
|