diff options
author | Brad Richardson <everythingfunctional@protonmail.com> | 2020-10-28 14:46:08 -0500 |
---|---|---|
committer | Brad Richardson <everythingfunctional@protonmail.com> | 2020-10-28 14:46:08 -0500 |
commit | 7d5a9b53a52198d96a2e0ad167c554a9653a93ff (patch) | |
tree | bc296fd050be1aade0882c21271cf365eacd6345 /bootstrap/test | |
parent | c88cabc00baf66d7d03efdda288ac18aa2c33493 (diff) | |
download | fpm-7d5a9b53a52198d96a2e0ad167c554a9653a93ff.tar.gz fpm-7d5a9b53a52198d96a2e0ad167c554a9653a93ff.zip |
Add options to specify a command to be used to run the executable(s) or test(s)
Diffstat (limited to 'bootstrap/test')
-rw-r--r-- | bootstrap/test/Spec.hs | 5 |
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 } |