We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b31c4d commit 480e3bfCopy full SHA for 480e3bf
java/ql/lib/semmle/code/java/dataflow/internal/ModelExclusions.qll
@@ -27,7 +27,7 @@ class TestLibrary extends RefType {
27
/** Holds if the given file is a test file. */
28
private predicate isInTestFile(File file) {
29
file.getAbsolutePath().matches(["%/test/%", "%/guava-tests/%", "%/guava-testlib/%"]) and
30
- not file.getAbsolutePath().matches("%/ql/test/%") // allows our test cases to work
+ not file.getAbsolutePath().matches(["%/ql/test/%", "%/ql/automodel/test/%"]) // allows our test cases to work
31
}
32
33
/** Holds if the given compilation unit's package is a JDK internal. */
0 commit comments