Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ded3974 commit fb07a56Copy full SHA for fb07a56
4 files changed
python/ql/test/library-tests/dataflow/coverage/localFlow.expected
@@ -8,9 +8,4 @@
8
| test.py:208:1:208:53 | Entry definition for SsaSourceVariable SINK | test.py:210:5:210:8 | ControlFlowNode for SINK |
9
| test.py:208:1:208:53 | Entry definition for SsaSourceVariable SOURCE | test.py:209:25:209:30 | ControlFlowNode for SOURCE |
10
| test.py:209:5:209:5 | ControlFlowNode for x | test.py:210:10:210:10 | ControlFlowNode for x |
11
-| test.py:209:9:209:68 | ControlFlowNode for .0 | test.py:209:9:209:68 | ControlFlowNode for .0 |
12
| test.py:209:9:209:68 | ControlFlowNode for ListComp | test.py:209:5:209:5 | ControlFlowNode for x |
13
-| test.py:209:16:209:16 | ControlFlowNode for v | test.py:209:45:209:45 | ControlFlowNode for v |
14
-| test.py:209:40:209:40 | ControlFlowNode for u | test.py:209:56:209:56 | ControlFlowNode for u |
15
-| test.py:209:51:209:51 | ControlFlowNode for z | test.py:209:67:209:67 | ControlFlowNode for z |
16
-| test.py:209:62:209:62 | ControlFlowNode for y | test.py:209:10:209:10 | ControlFlowNode for y |
python/ql/test/library-tests/dataflow/regression/dataflow.expected
@@ -23,3 +23,4 @@
23
| test.py:195:9:195:14 | ControlFlowNode for SOURCE | test.py:199:14:199:14 | ControlFlowNode for t |
24
| test.py:202:10:202:15 | ControlFlowNode for SOURCE | test.py:204:14:204:14 | ControlFlowNode for i |
25
| test.py:202:10:202:15 | ControlFlowNode for SOURCE | test.py:205:10:205:10 | ControlFlowNode for i |
26
+| test.py:208:12:208:17 | ControlFlowNode for SOURCE | test.py:214:14:214:14 | ControlFlowNode for x |
python/ql/test/library-tests/dataflow/regression/test.py
@@ -211,4 +211,4 @@ def flow_in_generator():
211
212
def flow_from_generator():
213
for x in flow_in_generator():
214
- SINK(x) # Flow not found
+ SINK(x)
python/ql/test/library-tests/dataflow/tainttracking/defaultAdditionalTaintStep/test_collections.py
@@ -61,7 +61,7 @@ def test_access(x, y, z):
61
iter(tainted_list), # $ tainted
62
next(iter(tainted_list)), # $ MISSING: tainted
63
[i for i in tainted_list], # $ tainted
64
- [tainted_list for _i in [1,2,3]], # $ MISSING: tainted
+ [tainted_list for _i in [1,2,3]], # $ tainted
65
)
66
67
a, b, c = tainted_list[0:3]
@@ -85,7 +85,7 @@ def test_access_explicit(x, y, z):
85
86
next(iter(tainted_list)), # $ tainted
87
88
- [tainted_list for i in [1,2,3]], # $ MISSING: tainted
+ [tainted_list for i in [1,2,3]], # $ tainted
89
[TAINTED_STRING for i in [1,2,3]], # $ tainted
90
[tainted_list], # $ tainted
91
0 commit comments