blob: 47e207682d1a86c1a5d77c4b73662ad1fdf0d708 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
. ../../testenv.sh
$GHDL -i lib_numeric_tb.vhd
$GHDL -m numeric_tb
simulate numeric_tb --stop-time=10ns --wave=numeric_tb.ghw \
--sdf=typ==lib_numeric_tb.sdf
clean
rm numeric_tb.ghw
echo "Test successful"
|