blob: a58160e597efad9d52b7cc217a4b43602c6ac0be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS=--std=08
analyze etest.vhdl
elab_simulate_failure etest > etest.err
grep "slice direction" etest.err
clean
rm -f etest.err
echo "Test successful"
|