23 lines
487 B
Bash
Executable File
23 lines
487 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
echo "Using the bundled ivtest to run regression tests."
|
|
echo " pwd = $(pwd)"
|
|
|
|
cd ivtest
|
|
|
|
version=devel
|
|
|
|
status=0
|
|
if [ "$OS" = 'Windows_NT' ]; then
|
|
perl update_msys2_report.pl $version
|
|
perl vvp_reg.pl || status=1
|
|
diff --strip-trailing-cr regression_report-msys2-$version.txt regression_report.txt || status=1
|
|
else
|
|
perl vvp_reg.pl || status=1
|
|
diff regression_report-$version.txt regression_report.txt || status=1
|
|
fi
|
|
|
|
perl vpi_reg.pl || status=1
|
|
|
|
exit $status
|