We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1bd80f commit 4656903Copy full SHA for 4656903
roottest/cling/parsing/CMakeLists.txt
@@ -30,11 +30,13 @@ ROOTTEST_ADD_TEST(runTTestClass
30
DEPENDS ${GENERATE_DICTIONARY_TEST}
31
LABELS roottest regression cling)
32
33
-ROOTTEST_ADD_TEST(semicolon
34
- MACRO semicolon.C
35
- MACROARG \"abc;xyz\"
36
- OUTREF semicolon.ref
37
- LABELS roottest regression cling)
+if(NOT MSVC) # See #20738
+ ROOTTEST_ADD_TEST(thesemicolon
+ COPY_TO_BUILDDIR semicolon.C ./thesemicolon.sh
+ COMMAND ./thesemicolon.sh
+ OUTREF semicolon.ref
38
+ LABELS roottest regression cling)
39
+endif()
40
41
ROOTTEST_ADD_TEST(assertManipulators
42
MACRO assertManipulators.C
roottest/cling/parsing/thesemicolon.sh
@@ -0,0 +1,3 @@
1
+#! /usr/bin/env sh
2
+
3
+root.exe -b -q semicolon.C\(\"abc;xyz\"\)
0 commit comments