blob: a171a3051b1b13f6cf2597fbe270670a408ff6c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#! /bin/sh
. ../../testenv.sh
analyze_failure tarith.vhdl
analyze --ieee=synopsys tarith.vhdl
analyze_failure tunsigned.vhdl
analyze --ieee=synopsys tunsigned.vhdl
analyze_failure tsigned.vhdl
analyze --ieee=synopsys tsigned.vhdl
analyze_failure tsltextio.vhdl
analyze --ieee=synopsys tsltextio.vhdl
analyze --std=08 tsltextio.vhdl
clean
clean --std=08
echo "Test successful"
|