blob: cdac78956cd0c9dbcd7f480b22df58218079ac5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
analyze --std=93 test_id.vhdl
elab_simulate --std=93 test_id
analyze test_id.vhdl
elab_simulate test_id
analyze test_attr.vhdl
elab_simulate test_attr
clean
echo "Test successful"
|