diff options
author | Daniel Hahler <git@thequod.de> | 2019-06-29 19:15:48 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-06-29 19:15:48 +0200 |
commit | 39ba35b38da0724f8562e4e63258ca0c51890e1d (patch) | |
tree | fd8dc900b1ee83245b1ec41551320f54c50a9223 | |
parent | e9f1bdabb877c47af8260ea680d7f748ab29b68d (diff) | |
download | rneovim-39ba35b38da0724f8562e4e63258ca0c51890e1d.tar.gz rneovim-39ba35b38da0724f8562e4e63258ca0c51890e1d.tar.bz2 rneovim-39ba35b38da0724f8562e4e63258ca0c51890e1d.zip |
cmake/RunTests.cmake: fix TEST_TAG/TEST_FILTER [ci skip] #10371
Followup to f1f9a2f97.
The mentioned example there did not work after all, likely due to
changing quoting during PR review.
-rw-r--r-- | cmake/RunTests.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/RunTests.cmake b/cmake/RunTests.cmake index 6999ce8343..f5b3f01778 100644 --- a/cmake/RunTests.cmake +++ b/cmake/RunTests.cmake @@ -30,11 +30,11 @@ set(BUSTED_ARGS $ENV{BUSTED_ARGS}) separate_arguments(BUSTED_ARGS) if(DEFINED ENV{TEST_TAG} AND NOT "$ENV{TEST_TAG}" STREQUAL "") - list(APPEND BUSTED_ARGS --tags="$ENV{TEST_TAG}") + list(APPEND BUSTED_ARGS --tags $ENV{TEST_TAG}) endif() if(DEFINED ENV{TEST_FILTER} AND NOT "$ENV{TEST_FILTER}" STREQUAL "") - list(APPEND BUSTED_ARGS --filter="$ENV{TEST_FILTER}") + list(APPEND BUSTED_ARGS --filter $ENV{TEST_FILTER}) endif() # TMPDIR: use relative test path (for parallel test runs / isolation). |