aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1823/testsuite.sh
blob: b49d6bd7f46f0551a9c56ff5522afbbde25d59b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

. ../../testenv.sh

for f in entity_1.vhdl entity2.vhdl entity3.vhdl; do
    echo "parsing $f"
    if $GHDL -i $f; then
        echo "error expected during parse"
    fi
done

clean

echo "Test successful"