blob: f4ccfe70e6c2858bfe2fb170c32a3e0fe4cde7eb (
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_failure ent.vhdl 2> log.err
if grep 'no overloaded function' log.err; then
exit 1
fi
clean
echo "Test successful"
|