diff options
author | Brad Richardson <everythingfunctional@protonmail.com> | 2020-11-16 11:56:33 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 11:56:33 -0600 |
commit | 213d34325da7a1fc01bae0dd420faf3a06381883 (patch) | |
tree | 4af6e4a2262ed8d39aa936237b34831fbdafa98d /bootstrap/test | |
parent | ca1a0e4f50db32770b6e9aa60db9ce0b660b5bf8 (diff) | |
parent | ffd95a4179276d49fd4d2a277c2eba905dc43b7a (diff) | |
download | fpm-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.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 } |