blob: 11244d4575d8625ff6f99859b06e2a6b3f655042 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
. ../../testenv.sh
synth record_test.vhdl -e > syn_record_test.vhdl
analyze syn_record_test.vhdl
synth array_test.vhdl -e > syn_array_test.vhdl
analyze syn_array_test.vhdl
clean
echo "Test successful"
|