blob: 2a65485e4e0156a1b4d632602f5808fa40cbdc46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
. ../../testenv.sh
#GHDL_STD_FLAGS=--std=08
for t in repro1 repro2; do
synth $t.vhdl -e $t > syn_$t.vhdl
analyze syn_$t.vhdl
done
clean
echo "Test successful"
|