diff --git a/cpp/ql/test/library-tests/dataflow/taint-tests/taint.cpp b/cpp/ql/test/library-tests/dataflow/taint-tests/taint.cpp index bc064a1bda6..70d5b8c7b00 100644 --- a/cpp/ql/test/library-tests/dataflow/taint-tests/taint.cpp +++ b/cpp/ql/test/library-tests/dataflow/taint-tests/taint.cpp @@ -850,9 +850,9 @@ int tolower(int); void test_toupper_and_tolower() { int s = source(); int u = toupper(s); - sink(u); // $ MISSING: ast,ir + sink(u); // $ ir MISSING: ast int l = tolower(s); - sink(l); // $ MISSING: ast,ir + sink(l); // $ ir MISSING: ast } typedef int iconv_t; @@ -864,5 +864,5 @@ void test_iconv(size_t size) { char* p = out; size_t size_out; iconv(0, &s, &size, &p, &size_out); - sink(*p); // $ MISSING: ast,ir + sink(*p); // $ ast,ir } \ No newline at end of file diff --git a/cpp/ql/test/library-tests/dataflow/taint-tests/taint.expected b/cpp/ql/test/library-tests/dataflow/taint-tests/taint.expected index 5b2bfbadb7f..444be256516 100644 --- a/cpp/ql/test/library-tests/dataflow/taint-tests/taint.expected +++ b/cpp/ql/test/library-tests/dataflow/taint-tests/taint.expected @@ -3,4 +3,3 @@ WARNING: module 'DataFlow' has been deprecated and may be removed in future (tai WARNING: module 'DataFlow' has been deprecated and may be removed in future (taint.ql:61,22-30) WARNING: module 'DataFlow' has been deprecated and may be removed in future (taint.ql:68,25-33) WARNING: module 'TaintTracking' has been deprecated and may be removed in future (taint.ql:73,20-33) -| taint.cpp:867:7:867:8 | * ... | Fixed missing result: ast |