Skip a test intentionally; Maven already does the same

Big thanks to Julian for showing me where this exclusion logic lives
in the Maven configuration.  There's a "**/*AndroidLibs*.java"
exclusion pattern in the top-level "pom.xml".
This commit is contained in:
Ben Liblit 2018-02-15 10:23:46 -06:00
parent 2763589d1f
commit b8f1bb3aaf
1 changed files with 1 additions and 1 deletions

View File

@ -141,6 +141,6 @@ processTestResources {
test {
maxHeapSize = '800M'
// https://github.com/liblit/WALA/issues/5
// intentionally skipped; not a bug
exclude '**/DynamicDalvikComparisonTestForAndroidLibs.class'
}