Change the expected output of a regression test

but I think is a bit more meaningful now. We do not actually see the value of
`p->next` but at least it is consistent (before `p->next` was different from
`tmp.next`).
This commit is contained in:
Petr Bauch 2019-05-16 15:36:46 +01:00
parent bd1e41d629
commit dc19f1a9dc
1 changed files with 2 additions and 3 deletions

View File

@ -2,8 +2,7 @@ CORE
main.gb
--breakpoint checkpoint --symbols p
struct S tmp;
tmp = \{ \.next=\(\(struct S \*\)(NULL|0)\) \};
p = &tmp;
p->next = &tmp;
tmp = \{ \.next=\(\(struct S \*\)0\) \};
p = \&tmp;
^EXIT=0$
^SIGNAL=0$