This commit is contained in:
Mathias Vorreiter Pedersen 2024-04-26 18:15:59 +01:00
Родитель 141af7cc87
Коммит d3d2e2188d
2 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -4,4 +4,8 @@ WARNING: Module DataFlow has been deprecated and may be removed in future (taint
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)
testFailures
| standalone_iterators.cpp:95:15:95:25 | // $ ast,ir | Missing result:ir= |
| standalone_iterators.cpp:112:11:112:21 | // $ ast,ir | Missing result:ir= |
| standalone_iterators.cpp:116:11:116:21 | // $ ast,ir | Missing result:ir= |
| standalone_iterators.cpp:117:12:117:22 | // $ ast,ir | Missing result:ir= |
failures

Просмотреть файл

@ -389,7 +389,7 @@ void test_vector_output_iterator(int b) {
*i9 = source();
taint_vector_output_iterator(i9);
sink(v9); // $ ast=330:10 MISSING: ir SPURIOUS: ast=389:8
sink(v9); // $ ast=330:10 ir SPURIOUS: ast=389:8
std::vector<int>::iterator i10 = v10.begin();
vector_iterator_assign_wrapper(i10, 10);
@ -440,14 +440,14 @@ void test_vector_inserter(char *source_string) {
std::vector<std::string> out;
auto it = std::back_inserter(out);
*++it = std::string(source_string);
sink(out); // $ ast MISSING: ir
sink(out); // $ ast,ir
}
{
std::vector<int> out;
auto it = std::back_inserter(out);
*++it = source();
sink(out); // $ ast MISSING: ir
sink(out); // $ ast,ir
}
}