File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed
cpp/ql/test/library-tests/dataflow/taint-tests Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -450,7 +450,7 @@ void test_qualifiers()
450
450
b.member = source ();
451
451
sink (b); // $ ir MISSING: ast
452
452
sink (b.member ); // $ ast,ir
453
- sink (b.getMember ()); // $ ir MISSING: ast
453
+ sink (b.getMember ()); // $ MISSING: ir ast
454
454
455
455
c = new MyClass2 (0 );
456
456
Original file line number Diff line number Diff line change @@ -4,7 +4,4 @@ WARNING: module 'DataFlow' has been deprecated and may be removed in future (tai
4
4
WARNING: module 'DataFlow' has been deprecated and may be removed in future (taint.ql:68,25-33)
5
5
WARNING: module 'TaintTracking' has been deprecated and may be removed in future (taint.ql:73,20-33)
6
6
testFailures
7
- | taint.cpp:453:23:453:42 | // $ ir MISSING: ast | Missing result:ir= |
8
- | vector.cpp:118:12:118:30 | // $ ir MISSING:ast | Missing result:ir= |
9
- | vector.cpp:119:12:119:30 | // $ ir MISSING:ast | Missing result:ir= |
10
7
failures
Original file line number Diff line number Diff line change @@ -115,8 +115,8 @@ void test_vector_swap() {
115
115
v3.swap (v4);
116
116
117
117
sink (v1);
118
- sink (v2); // $ ir MISSING:ast
119
- sink (v3); // $ ir MISSING:ast
118
+ sink (v2); // $ MISSING:ir ast
119
+ sink (v3); // $ MISSING:ir ast
120
120
sink (v4);
121
121
}
122
122
You can’t perform that action at this time.
0 commit comments