blob: 581db85c415f057f32229c9f4355c12f84cf0c9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#! /bin/sh
# Missing SEH handler on windows-64.
if [ "$OS" = "Windows_NT" -a "$PROCESSOR_ARCHITECTURE" = "AMD64" ]; then
echo "Test skipped"
exit 0
fi
. ../../testenv.sh
analyze nullacc.vhdl
elab_simulate_failure nullacc
analyze fileerr.vhdl
elab_simulate_failure fileerr
clean
echo "Test successful"
|