We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45ab723 commit 621e3f6Copy full SHA for 621e3f6
python/ql/test/experimental/dataflow/coverage/test.py
@@ -377,3 +377,28 @@ def test_swap():
377
a, b = b, a
378
SINK_F(a)
379
SINK(b)
380
+
381
382
+def test_deep_callgraph():
383
+ # port of python/ql/test/library-tests/taint/general/deep.py
384
385
+ def f1(arg):
386
+ return arg
387
388
+ def f2(arg):
389
+ return f1(arg)
390
391
+ def f3(arg):
392
+ return f2(arg)
393
394
+ def f4(arg):
395
+ return f3(arg)
396
397
+ def f5(arg):
398
+ return f4(arg)
399
400
+ def f6(arg):
401
+ return f5(arg)
402
403
+ x = f6(SOURCE)
404
+ SINK(x) # Flow missing
0 commit comments