blob: 612ef479656ac1a021c72f2eb8d67af0027ddc02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
export GHDL_STD_FLAGS="--std=02 --work=mwe -frelaxed"
analyze mwe.vhdl
clean
export GHDL_STD_FLAGS="--std=02 --work=mwe"
analyze_failure mwe.vhdl
clean
echo "Test successful"
|