File tree Expand file tree Collapse file tree 4 files changed +7
-17
lines changed
cbmc/export-symex-ready-goto Expand file tree Collapse file tree 4 files changed +7
-17
lines changed Original file line number Diff line number Diff line change 1
- CORE winbug
1
+ CORE
2
2
test.c
3
- --export-symex-ready-goto ""
3
+ --export-symex-ready-goto ''
4
4
^ERROR: Please provide a filename to write the goto-binary to.$
5
5
^EXIT=6$
6
6
^SIGNAL=0$
Original file line number Diff line number Diff line change 1
1
if ("${CMAKE_SYSTEM_NAME} " STREQUAL "Windows" )
2
2
set (is_windows true )
3
- set (exclude_win_broken_tests -X winbug)
4
3
else ()
5
4
set (is_windows false )
6
- set (exclude_win_broken_tests "" )
7
5
endif ()
8
6
9
7
add_test_pl_tests(
10
- "${CMAKE_CURRENT_SOURCE_DIR} /chain.sh $<TARGET_FILE:goto-cc> $<TARGET_FILE:goto-inspect> ${is_windows} " ${exclude_win_broken_tests}
8
+ "${CMAKE_CURRENT_SOURCE_DIR} /chain.sh $<TARGET_FILE:goto-cc> $<TARGET_FILE:goto-inspect> ${is_windows} "
11
9
)
Original file line number Diff line number Diff line change @@ -6,17 +6,16 @@ include ../../src/common
6
6
ifeq ($(BUILD_ENV_ ) ,MSVC)
7
7
exe=../../../src/goto-cc/goto-cl
8
8
is_windows=true
9
- excluded_tests = -X winbug
10
9
else
11
10
exe=../../../src/goto-cc/goto-cc
12
11
is_windows=false
13
12
endif
14
13
15
14
test :
16
- @../test.pl -e -p -c ' ../chain.sh $(exe) ../../../src/goto-inspect/goto-inspect $(is_windows)' $( excluded_tests )
15
+ @../test.pl -e -p -c ' ../chain.sh $(exe) ../../../src/goto-inspect/goto-inspect $(is_windows)'
17
16
18
17
tests.log :
19
- @../test.pl -e -p -c ' ../chain.sh $(exe) ../../../src/goto-inspect/goto-inspect $(is_windows)' $( excluded_tests )
18
+ @../test.pl -e -p -c ' ../chain.sh $(exe) ../../../src/goto-inspect/goto-inspect $(is_windows)'
20
19
21
20
clean :
22
21
find . -name ' *.out' -execdir $(RM ) ' {}' \;
Original file line number Diff line number Diff line change 1
- CORE winbug
1
+ CORE
2
2
main.c
3
- " "
3
+ ' '
4
4
^EXIT=6$
5
5
^SIGNAL=0$
6
6
--
@@ -13,10 +13,3 @@ END_FUNCTION
13
13
--
14
14
This is testing the behaviour of the goto-inspect binary in case a binary
15
15
is present, but no inspection option is present.
16
-
17
- This is labelled `winbug` to avoid running on windows because of issues with
18
- the empty string in line 3 (simulating the lack of an option) not working as
19
- it should (it is contrary to the behaviour of unix systems). The behaviour
20
- has been verified manually on a machine as working as expected, but getting
21
- the test to run automatically is a lot more involved, so we're opting to
22
- skipping this on that platform for now.
You can’t perform that action at this time.
0 commit comments