blob: 489868f740891098455759a0577aae229abde363 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
. ../../testenv.sh
GHDL_STD_FLAGS=--std=08
synth test.vhdl -e test > syn_test.vhdl
analyze syn_test.vhdl
synth snot.vhdl -e > syn_snot.vhdl
clean
echo "Test successful"
|