Python: Remove failing non-inline test

It is subsumed by `tracked.ql` anyway.
This commit is contained in:
Taus Brock-Nannestad
2020-08-28 21:21:29 +02:00
parent 5d853e840a
commit 7108d28395
2 changed files with 0 additions and 19 deletions

View File

@@ -1,6 +0,0 @@
| test.py:1:1:1:18 | Exit node for Function get_tracked | type tracker without call steps |
| test.py:2:9:2:15 | ControlFlowNode for tracked | type tracker without call steps |
| test.py:3:12:3:12 | ControlFlowNode for x | type tracker without call steps |
| test.py:16:9:16:15 | ControlFlowNode for tracked | type tracker without call steps |
| test.py:17:5:17:18 | SSA variable x | type tracker without call steps |
| test.py:17:17:17:17 | ControlFlowNode for x | type tracker without call steps |

View File

@@ -1,13 +0,0 @@
import python
import experimental.dataflow.TypeTracker
Node tracked(TypeTracker t) {
t.start() and
result = TCfgNode(any(NameNode n | n.getId() = "tracked"))
or
exists(TypeTracker t2 | t = t2.step(tracked(t2), result))
}
from Node n, TypeTracker t
where n = tracked(t)
select n, t