blob: a5de13f5e6c526578326834aa0a76e7225f03ebf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
analyze_failure -Werror=elaboration dummy.vhdl
analyze_failure -Werror=elaboration elab_func.vhdl
analyze_failure --std=08 -Werror=elaboration elab_prot.vhdl
analyze -Werror=elaboration test_comp.vhdl
analyze dummy.vhdl
elab_simulate_failure dummyentity
clean
echo "Test successful"
|