Skip to content

Commit ca49eef

Browse files
committed
Remove two WILL_FAIL annotations for Windows.
1 parent 81d147d commit ca49eef

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

cling/dict/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ ROOTTEST_ADD_TEST(runtemplateAutodict
1616
ROOTTEST_ADD_TEST(runoperators
1717
MACRO runoperators.C
1818
OUTREF operators.ref
19-
${WILLFAIL_ON_WIN32}
2019
LABELS roottest regression cling)
2120

2221
ROOTTEST_ADD_TEST(runalgebra

cling/stl/default/CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,13 @@ else()
1212
set(testcint OUTREF)
1313
endif()
1414

15+
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
16+
set(is_failing ${WILLFAIL_ON_WIN32})
17+
endif()
18+
1519
ROOTTEST_ADD_TEST(VectorSort
1620
MACRO VectorSort.C
1721
${testcint} VectorSort.ref
1822
# OUTCNV VectorSort_convert.sh
19-
${WILLFAIL_ON_WIN32}
23+
${is_failing}
2024
LABELS roottest regression cling)

0 commit comments

Comments
 (0)