Files
codeql/cpp/ql/test/library-tests/arguments/arguments.ql
2018-08-02 17:53:23 +01:00

11 lines
303 B
Plaintext

import cpp
from Compilation c, int i, string s
// Skip the extractor name; it'll vary depending on platform
where i > 0
and s = c.getArgument(i).replaceAll("\\", "/")
.regexpReplaceAll(".*(tools/qltest/predefined_macros)", "<root>/$1")
select c.getAFileCompiled().toString(),
i, s