Skip to content

Commit 15ff5d6

Browse files
committed
C/C++: Accept new test results
1 parent a40719b commit 15ff5d6

File tree

1 file changed

+3
-3
lines changed
  • cpp/ql/test/library-tests/ir/address_constant_folding

1 file changed

+3
-3
lines changed

cpp/ql/test/library-tests/ir/address_constant_folding/test.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ int global_var;
55
void test_address_null_comparison(int param_var) {
66
int local_var;
77

8-
if (&global_var == NULL) {} // $ MISSING: VariableAddress=global_var
9-
if (&global_var != NULL) {} // $ MISSING: VariableAddress=global_var
8+
if (&global_var == NULL) {} // $ VariableAddress=global_var
9+
if (&global_var != NULL) {} // $ VariableAddress=global_var
1010
if (&global_var) {} // $ VariableAddress=global_var
11-
if (!&global_var) {} // $ MISSING: VariableAddress=global_var
11+
if (!&global_var) {} // $ VariableAddress=global_var
1212

1313
if (&local_var == NULL) {} // $ VariableAddress=local_var
1414
if (&local_var != NULL) {} // $ VariableAddress=local_var

0 commit comments

Comments
 (0)