Skip to content

Commit 1771d77

Browse files
committed
C++: Accept test changes.
1 parent 9049932 commit 1771d77

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
@@ -16,7 +16,7 @@ void modify_copy(int* ptr) { // $ ast-def=ptr
1616
void test_output_copy() {
1717
int x = 0;
1818
modify_copy(&x);
19-
sink(x); // $ SPURIOUS: ir
19+
sink(x); // clean
2020
}
2121

2222
void modify(int* ptr) { // $ ast-def=ptr
@@ -43,7 +43,7 @@ void modify_copy_of_pointer(int* p, unsigned len) { // $ ast-def=p
4343
void test_modify_copy_of_pointer() {
4444
int x[10];
4545
modify_copy_of_pointer(x, 10);
46-
sink(x[0]); // $ SPURIOUS: ir,ast
46+
sink(x[0]); // $ SPURIOUS: ast // clean
4747
}
4848

4949
void modify_pointer(int* p, unsigned len) { // $ ast-def=p

0 commit comments

Comments
 (0)