blob: 067468bedf962a090b34f1ebf709b4cdee5f1e4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
. ../../testenv.sh
# gcc -c -fPIC aux.c
# gcc -shared -o aux.so aux.o
export GHDL_STD_FLAGS=--std=08
analyze pkg.vhdl tb.vhdl
# elab_simulate tb
clean
# rm -f aux.o aux.so
echo "Test successful"
|