aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue450/testsuite.sh
blob: f673244594e8a795e380246ba8598ac5e875dbf3 (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 disptree.vhdl
elab disptree

if c_compiler_is_available && ghdl_has_feature disptree vpi; then
  add_vpi_path

  $GHDL --vpi-compile -v gcc -c vpi2.c
  $GHDL --vpi-link -v gcc -o vpi2.vpi vpi2.o

  simulate disptree --vpi=./vpi2.vpi | tee disptree.out
  diff --strip-trailing-cr -q disptree.ref disptree.out

  rm -f vpi2.o vpi2.vpi disptree.out
fi

clean

echo "Test successful"