Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Hahn <hahnse@ornl.gov>2022-03-19 17:35:09 +0300
committerGitHub <noreply@github.com>2022-03-19 17:35:09 +0300
commit431a11bd5d5ce9c7c5a5c4a30bded5f64ea46641 (patch)
tree13a3e4faf7ef4b4018bc1f783f9fbb47309852d5
parent8de4cf7e759c55a89761c25900d80e01ae7ac3fd (diff)
Fix properties not being passed in doctest_discover_tests (#626)
Signed-off-by: Steven Hahn <hahnse@ornl.gov>
-rw-r--r--scripts/cmake/doctestAddTests.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cmake/doctestAddTests.cmake b/scripts/cmake/doctestAddTests.cmake
index 96d42bcb..3b254850 100644
--- a/scripts/cmake/doctestAddTests.cmake
+++ b/scripts/cmake/doctestAddTests.cmake
@@ -105,8 +105,8 @@ foreach(line ${output})
"${prefix}${test}${suffix}"
PROPERTIES
WORKING_DIRECTORY "${TEST_WORKING_DIR}"
- LABELS ${labels}
${properties}
+ LABELS ${labels}
)
unset(labels)
list(APPEND tests "${prefix}${test}${suffix}")