Skip to content

Commit c630fd1

Browse files
committed
Fix memory-analyzer regression tests
The make-builds did not refer to the goto-gcc correctly. Also the result of pointer_to_struct test change, but it is consistent now. And the gdb does not seem to work on OSX so we skip that build in CI.
1 parent 347bf43 commit c630fd1

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

regression/memory-analyzer/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
default: clean tests.log
22

3-
GOTO_GCC_EXE=../../../src/goto-cc/goto-gcc
43
MEMORY_ANALYZER_EXE=../../../src/memory-analyzer/memory-analyzer
4+
GOTO_GCC_EXE=../../../src/goto-cc/goto-gcc
55

66
clean:
77
find -name '*.exe' -execdir $(RM) '{}' \;

regression/memory-analyzer/pointer_to_struct_01/test.desc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ CORE
22
main.gb
33
--breakpoint checkpoint --symbols p
44
struct S tmp;
5-
tmp = \{ \.next=\(\(struct S \*\)(NULL|0)\) \};
6-
p = &tmp;
7-
p->next = &tmp;
5+
tmp = \{ \.next=\(\(struct S \*\)0\) \};
6+
p = \&tmp;
87
^EXIT=0$
98
^SIGNAL=0$

src/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ DIRS = analyses \
1717
json-symtab-language \
1818
langapi \
1919
linking \
20-
memory-analyzer \
2120
pointer-analysis \
2221
solvers \
2322
symtab2gb \

0 commit comments

Comments
 (0)