Skip to content

Commit fb6329f

Browse files
committed
C++: Fix test annotation
1 parent 1771d77 commit fb6329f

File tree

1 file changed

+2
-2
lines changed
  • cpp/ql/test/library-tests/dataflow/dataflow-tests

1 file changed

+2
-2
lines changed

cpp/ql/test/library-tests/dataflow/dataflow-tests/flowOut.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void modify(int* ptr) { // $ ast-def=ptr
2828
void test_output() {
2929
int x = 0;
3030
modify(&x);
31-
sink(x); // $ SPURIOUS: ir MISSING: ast
31+
sink(x); // $ ir MISSING: ast
3232
}
3333

3434
void modify_copy_of_pointer(int* p, unsigned len) { // $ ast-def=p
@@ -71,4 +71,4 @@ void modify_copy_via_strdup(char* p) { // $ ast-def=p
7171
void test_modify_copy_via_strdup(char* p) { // $ ast-def=p
7272
modify_copy_via_strdup(p);
7373
sink(*p); // $ SPURIOUS: ir
74-
}
74+
}

0 commit comments

Comments
 (0)