diff options
author | Laurence Kedward <laurence.kedward@bristol.ac.uk> | 2021-06-21 12:09:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-21 12:09:53 +0100 |
commit | 0372313a91263789c843623fca0aab9a4e340e19 (patch) | |
tree | e780354903bee004157a97b1f7cb583baca93a6a /test/cli_test/cli_test.f90 | |
parent | e6688d07c5658b1a26354be7d7aea68231679f05 (diff) | |
parent | 21c6fe6098fe83cb9e3f93983c9339e0fc8d5758 (diff) | |
download | fpm-0372313a91263789c843623fca0aab9a4e340e19.tar.gz fpm-0372313a91263789c843623fca0aab9a4e340e19.zip |
Merge pull request #497 from urbanjost/equal
correct for equal sign in flag options to fix #495
Diffstat (limited to 'test/cli_test/cli_test.f90')
-rw-r--r-- | test/cli_test/cli_test.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cli_test/cli_test.f90 b/test/cli_test/cli_test.f90 index d979f1a..e23afde 100644 --- a/test/cli_test/cli_test.f90 +++ b/test/cli_test/cli_test.f90 @@ -53,7 +53,7 @@ character(len=*),parameter :: tests(*)= [ character(len=256) :: & 'CMD="run proj1 p2 project3 --profile debug", NAME="proj1","p2","project3",profile="debug",', & 'CMD="run proj1 p2 project3 --profile release", NAME="proj1","p2","project3",profile="release",', & 'CMD="run proj1 p2 project3 --profile release -- arg1 -x ""and a long one""", & - &NAME="proj1","p2","project3",profile="release",ARGS="""arg1"" -x ""and a long one""", ', & + &NAME="proj1","p2","project3",profile="release",ARGS="""arg1"" ""-x"" ""and a long one""", ', & 'CMD="test", ', & 'CMD="test my_project", NAME="my_project", ', & @@ -61,7 +61,7 @@ character(len=*),parameter :: tests(*)= [ character(len=256) :: & 'CMD="test proj1 p2 project3 --profile debug", NAME="proj1","p2","project3",profile="debug",', & 'CMD="test proj1 p2 project3 --profile release", NAME="proj1","p2","project3",profile="release",', & 'CMD="test proj1 p2 project3 --profile release -- arg1 -x ""and a long one""", & - &NAME="proj1","p2","project3",profile="release" ARGS="""arg1"" -x ""and a long one""", ', & + &NAME="proj1","p2","project3",profile="release" ARGS="""arg1"" ""-x"" ""and a long one""", ', & 'CMD="build", NAME= profile="",ARGS="",', & 'CMD="build --profile release", NAME= profile="release",ARGS="",', & |