Skip to content

Commit fb36d81

Browse files
committed
Ignore regression tests marked winbug on windows make builds.
This includes tests under: * regression/cpp * regression/cbmc-cpp * regression/systemc
1 parent 211f198 commit fb36d81

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

regression/cbmc-cpp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ include ../../src/config.inc
44
include ../../src/common
55

66
ifeq ($(BUILD_ENV_),MSVC)
7-
excluded_tests = -X gcc-only
7+
excluded_tests = -X gcc-only -X winbug
88
else
99
# In MacOS, a change in the assert.h header file
1010
# is causing template errors when exercising the

regression/cpp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ else
1010
endif
1111

1212
ifeq ($(BUILD_ENV_),MSVC)
13-
excluded_tests = -X gcc-only
13+
excluded_tests = -X gcc-only -X winbug
1414
else
1515
# In MacOS, a change in the assert.h header file
1616
# is causing template errors when exercising the

regression/systemc/Makefile

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
1-
ifneq ($(BUILD_ENV_),MSVC)
1+
default: tests.log
2+
3+
include ../../src/config.inc
4+
include ../../src/common
5+
6+
ifeq ($(BUILD_ENV_),MSVC)
7+
exe = ../../../src/goto-cc/goto-cl
8+
else
9+
exe = ../../../src/goto-cc/goto-cc
10+
endif
11+
12+
ifeq ($(BUILD_ENV_),MSVC)
13+
excluded_tests = -X gcc-only -X winbug
14+
else
215
# In MacOS, a change in the assert.h header file
316
# is causing template errors when exercising the
417
# C++ front end (because of a transitive include

0 commit comments

Comments
 (0)