blob: 9e03757368f76e4bf1d8413c519a7728344cfe58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS=--std=08
analyze -ds entity_1.vhdl 2> entity_1.dump
cnt=$(grep -c if_generate_else entity_1.dump)
test $cnt -eq 2
clean
echo "Test successful"
|