Skip DroidBench tests on Windows, for now

The default location of DroidBench in "/tmp/DroidBench" does not work
well on Windows. So let's disable these tests until someone has time to
make that path more portable.
This commit is contained in:
Ben Liblit 2018-03-13 18:34:17 -05:00 committed by Ben Liblit
parent f568db5de6
commit ad111547de
1 changed files with 5 additions and 2 deletions

View File

@ -120,8 +120,6 @@ dependencies {
}
processTestResources {
dependsOn unpackDroidBench
from copyAndroidJar
from downloadSampleCup
from downloadSampleLex
@ -132,6 +130,11 @@ processTestResources {
from testdata.downloadJavaCup
}
if (isWindows)
test.exclude '**/droidbench/**'
else
processTestResources.dependsOn unpackDroidBench
test {
maxHeapSize = '800M'
}