Skip to content

Commit 2b97b47

Browse files
committed
Exclude object-bits/ tests that are known broken on windows
1 parent b60d7c8 commit 2b97b47

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
if(WIN32)
22
set(is_windows true)
3+
set(exclude_broken_windows_tests -X winbug)
34
else()
45
set(is_windows false)
6+
set(exclude_broken_windows_tests "")
57
endif()
68

79
add_test_pl_tests(
8-
"${CMAKE_CURRENT_SOURCE_DIR}/chain.sh $<TARGET_FILE:goto-cc> $<TARGET_FILE:cbmc> ${is_windows}"
10+
"${CMAKE_CURRENT_SOURCE_DIR}/chain.sh $<TARGET_FILE:goto-cc> $<TARGET_FILE:cbmc> ${is_windows}" ${exclude_broken_windows_tests}
911
)

regression/goto-cc-cbmc-shared-options/object-bits/fewer_bits.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE
1+
CORE winbug
22
test.c
33
--function main --object-bits 6
44
^EXIT=10$

regression/goto-cc-cbmc-shared-options/object-bits/more_bits.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CORE
1+
CORE winbug
22
test.c
33
--function main --object-bits 10
44
^EXIT=10$

0 commit comments

Comments
 (0)