update and mask unit tests when running on win32

Update pq_test to ignore changes in whitespace.
Update for new testssl params, specify absolute paths to test binaries.
Fork-based tests do not make sense on Windows.
Disable building biotest, since it is too specific to OpenBSD's behavior
to be useful on other platforms.
This commit is contained in:
Brent Cook
2014-11-20 08:46:02 -06:00
committed by Brent Cook
parent 58fcd3c39c
commit 96bf8be098
5 changed files with 57 additions and 11 deletions

View File

@@ -1,3 +1,7 @@
#!/bin/sh
set -e
./pq_test | cmp $srcdir/pq_expected.txt -
TEST=./pq_test
if [ -e ./pq_test.exe ]; then
TEST=./pq_test.exe
fi
$TEST | diff -b $srcdir/pq_expected.txt -