File: test.sh

package info (click to toggle)
iverilog 13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,160 kB
  • sloc: cpp: 114,001; ansic: 65,058; yacc: 10,610; sh: 4,286; vhdl: 3,246; makefile: 1,884; perl: 1,813; python: 579; csh: 2
file content (20 lines) | stat: -rwxr-xr-x 311 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env sh

echo "Using the bundled ivtest to run regression tests."
echo " pwd = $(pwd)"

cd ivtest

status=0

perl vvp_reg.pl || status=1

if [ "x$1" = "xno-pli1" ] ; then
    perl vpi_reg.pl || status=1
else
    perl vpi_reg.pl --with-pli1 || status=1
fi

python3 vvp_reg.py || status=1

exit $status