blob: 90e38214a5f0df88bd2a343723cae82728423470 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#! /bin/sh
. ../../testenv.sh
if ! $GHDL --help -a | grep -q time-resolution; then
echo "option --time-resolution not available"
else
# Below the resolution
analyze_failure --time-resolution=sec ent.vhdl
analyze_failure --time-resolution=ns t3.vhdl
# Zero physical literals are always allowed.
analyze --time-resolution=ms t1.vhdl
analyze --time-resolution=ms t2.vhdl
analyze ent.vhdl
elab_simulate --time-resolution=us ent
elab_simulate --time-resolution=auto ent
clean
fi
echo "Test successful"
|