about summary refs log tree commit diff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/dev_test_suite.sh6
-rw-r--r--test/src/unittests-math.cpp1
2 files changed, 4 insertions, 3 deletions
diff --git a/test/dev_test_suite.sh b/test/dev_test_suite.sh
index 0ccc24c..77604be 100755
--- a/test/dev_test_suite.sh
+++ b/test/dev_test_suite.sh
@@ -11,7 +11,7 @@ testBXDStandardRelatednessMatrixKSingularError() {
            -c ../example/BXD_covariates.txt \
            -a ../example/BXD_snps.txt \
            -gk \
-           -debug -strict \
+           -debug \
            -o $outn
     assertEquals 22 $? # should show singular error
 }
@@ -24,7 +24,7 @@ testBXDStandardRelatednessMatrixK() {
            -c ../example/BXD_covariates2.txt \
            -a ../example/BXD_snps.txt \
            -gk \
-           -debug -strict \
+           -debug \
            -o $outn
     assertEquals 0 $?
     outfn=output/$outn.cXX.txt
@@ -40,7 +40,7 @@ testBXDLMMLikelihoodRatio() {
            -a ../example/BXD_snps.txt \
            -k ./output/BXD.cXX.txt \
            -lmm 2 -maf 0.1 \
-           -debug -strict \
+           -debug \
            -o $outn
     assertEquals 0 $?
 
diff --git a/test/src/unittests-math.cpp b/test/src/unittests-math.cpp
index 6486707..757c2dc 100644
--- a/test/src/unittests-math.cpp
+++ b/test/src/unittests-math.cpp
@@ -10,6 +10,7 @@
 #include "debug.h"
 #include "mathfunc.h"
 #include "fastblas.h"
+#include "fastopenblas.h"
 
 using namespace std;