From 39ba35b38da0724f8562e4e63258ca0c51890e1d Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sat, 29 Jun 2019 19:15:48 +0200 Subject: 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. --- cmake/RunTests.cmake | 4 ++-- 1 file 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). -- cgit