mirror of
https://github.com/github/codeql.git
synced 2025-12-27 06:06:32 +01:00
Will need subsequent PRs fixing up test failures (due to deprecated methods moving around), but other than that everything should be straight-forward.
13 lines
369 B
Plaintext
13 lines
369 B
Plaintext
/**
|
|
* This should be compared to
|
|
* python/ql/test/library-tests/taint/dataflow/Dataflow.ql
|
|
* A first goal is to have identical results; after that we
|
|
* hope to remove the false positive.
|
|
*/
|
|
|
|
import experimental.dataflow.testConfig
|
|
|
|
from DataFlow::Node source, DataFlow::Node sink
|
|
where exists(TestConfiguration cfg | cfg.hasFlow(source, sink))
|
|
select source, sink
|