blob: 26ef8fa121a7a09efba918df777d10a34554d13f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/sh
. ../../testenv.sh
# Don't use grep -q, as SIGPIPE doesn't exist on windows.
$GHDL --file-to-xml t2.vhdl | grep "01X" > /dev/null
$GHDL --file-to-xml test.vhdl | grep '"00"' > /dev/null
clean
echo "Test successful"
|