aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/test
diff options
context:
space:
mode:
authorBrad Richardson <everythingfunctional@protonmail.com>2020-11-16 11:56:33 -0600
committerGitHub <noreply@github.com>2020-11-16 11:56:33 -0600
commit213d34325da7a1fc01bae0dd420faf3a06381883 (patch)
tree4af6e4a2262ed8d39aa936237b34831fbdafa98d /bootstrap/test
parentca1a0e4f50db32770b6e9aa60db9ce0b660b5bf8 (diff)
parentffd95a4179276d49fd4d2a277c2eba905dc43b7a (diff)
downloadfpm-213d34325da7a1fc01bae0dd420faf3a06381883.tar.gz
fpm-213d34325da7a1fc01bae0dd420faf3a06381883.zip
Merge pull request #221 from everythingfunctional/test_runner_option
Test and executable runner options
Diffstat (limited to 'bootstrap/test')
-rw-r--r--bootstrap/test/Spec.hs5
1 files changed, 5 insertions, 0 deletions
diff --git a/bootstrap/test/Spec.hs b/bootstrap/test/Spec.hs
index dfa73df..215024d 100644
--- a/bootstrap/test/Spec.hs
+++ b/bootstrap/test/Spec.hs
@@ -22,6 +22,7 @@ testHelloWorld =
{ runRelease = False
, runCompiler = "gfortran"
, runFlags = []
+ , runRunner = Nothing
, runTarget = Nothing
, runArgs = Nothing
}
@@ -32,6 +33,7 @@ testHelloComplex =
{ testRelease = False
, testCompiler = "gfortran"
, testFlags = []
+ , testRunner = Nothing
, testTarget = Nothing
, testArgs = Nothing
}
@@ -42,6 +44,7 @@ testHelloFpm =
{ runRelease = False
, runCompiler = "gfortran"
, runFlags = []
+ , runRunner = Nothing
, runTarget = Nothing
, runArgs = Nothing
}
@@ -52,6 +55,7 @@ testCircular =
{ testRelease = False
, testCompiler = "gfortran"
, testFlags = []
+ , testRunner = Nothing
, testTarget = Nothing
, testArgs = Nothing
}
@@ -70,6 +74,7 @@ testMakefileComplex =
{ runRelease = False
, runCompiler = "gfortran"
, runFlags = []
+ , runRunner = Nothing
, runTarget = Nothing
, runArgs = Nothing
}