Skip to content

Commit 53750fa

Browse files
authored
Merge pull request #5571 from tautschnig/fix-identifier_names_illegal_characters-test
Make test identifier_names_illegal_characters work on Windows
2 parents d3f773a + d97fe4c commit 53750fa

File tree

6 files changed

+4
-73
lines changed

6 files changed

+4
-73
lines changed

regression/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ add_subdirectory(smt2_strings)
3838
add_subdirectory(strings)
3939
add_subdirectory(invariants)
4040
add_subdirectory(goto-diff)
41-
add_subdirectory(goto-cc-instrument-cbmc)
4241
add_subdirectory(test-script)
4342
add_subdirectory(goto-analyzer-taint)
4443
if(NOT WIN32)

regression/goto-cc-instrument-cbmc/CMakeLists.txt

Lines changed: 0 additions & 11 deletions
This file was deleted.

regression/goto-cc-instrument-cbmc/Makefile

Lines changed: 0 additions & 38 deletions
This file was deleted.

regression/goto-cc-instrument-cbmc/chain.sh

Lines changed: 0 additions & 21 deletions
This file was deleted.

regression/goto-cc-instrument-cbmc/identifier_names_illegal_characters/test.c renamed to regression/goto-instrument/identifier_names_illegal_characters/test.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ int main(void)
22
{
33
void *v, *x, *x_before;
44
x_before = x;
5+
#ifdef __GNUC__
56
__atomic_store_n(&x, 42, 0);
67
__atomic_exchange_n(&x, 42, 0);
8+
#endif
79
}

regression/goto-cc-instrument-cbmc/identifier_names_illegal_characters/test.desc renamed to regression/goto-instrument/identifier_names_illegal_characters/test.desc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
CORE winbug
1+
CORE
22
test.c
3-
3+
--dump-c
44
^EXIT=0$
55
^SIGNAL=0$
66
^VERIFICATION SUCCESSFUL$

0 commit comments

Comments
 (0)