Skip to content

Commit 4656903

Browse files
committed
[test] Activate a test otherwise never executed
1 parent f1bd80f commit 4656903

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

roottest/cling/parsing/CMakeLists.txt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ ROOTTEST_ADD_TEST(runTTestClass
3030
DEPENDS ${GENERATE_DICTIONARY_TEST}
3131
LABELS roottest regression cling)
3232

33-
ROOTTEST_ADD_TEST(semicolon
34-
MACRO semicolon.C
35-
MACROARG \"abc;xyz\"
36-
OUTREF semicolon.ref
37-
LABELS roottest regression cling)
33+
if(NOT MSVC) # See #20738
34+
ROOTTEST_ADD_TEST(thesemicolon
35+
COPY_TO_BUILDDIR semicolon.C ./thesemicolon.sh
36+
COMMAND ./thesemicolon.sh
37+
OUTREF semicolon.ref
38+
LABELS roottest regression cling)
39+
endif()
3840

3941
ROOTTEST_ADD_TEST(assertManipulators
4042
MACRO assertManipulators.C
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#! /usr/bin/env sh
2+
3+
root.exe -b -q semicolon.C\(\"abc;xyz\"\)

0 commit comments

Comments
 (0)