Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 1 | // Copyright (c) 2016, the R8 project authors. Please see the AUTHORS file |
| 2 | // for details. All rights reserved. Use of this source code is governed by a |
| 3 | // BSD-style license that can be found in the LICENSE file. |
Jean-Marie Henaff | 34d85f7 | 2017-06-14 10:32:04 +0200 | [diff] [blame] | 4 | import org.gradle.internal.os.OperatingSystem |
| 5 | import utils.Utils; |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 6 | |
| 7 | apply plugin: 'java' |
| 8 | apply plugin: 'idea' |
| 9 | apply plugin: 'jacoco' |
| 10 | |
| 11 | apply from: 'copyAdditionalJctfCommonFiles.gradle' |
| 12 | |
| 13 | repositories { |
| 14 | mavenCentral() |
| 15 | } |
| 16 | |
| 17 | // Custom source set for example tests and generated tests. |
| 18 | sourceSets { |
| 19 | test { |
| 20 | java { |
| 21 | srcDirs = [ |
| 22 | 'src/test/java', |
| 23 | 'build/generated/test/java', |
| 24 | ] |
| 25 | } |
| 26 | } |
| 27 | debugTestResources { |
| 28 | java { |
| 29 | srcDirs = ['src/test/debugTestResources'] |
| 30 | } |
| 31 | output.resourcesDir = 'build/classes/debugTestResources' |
| 32 | } |
Sebastien Hertz | 964c5c2 | 2017-05-23 15:22:23 +0200 | [diff] [blame] | 33 | debugTestResourcesJava8 { |
| 34 | java { |
| 35 | srcDirs = ['src/test/debugTestResourcesJava8'] |
| 36 | } |
| 37 | output.resourcesDir = 'build/classes/debugTestResourcesJava8' |
| 38 | } |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 39 | examples { |
| 40 | java { |
| 41 | srcDirs = ['src/test/examples'] |
| 42 | } |
| 43 | output.resourcesDir = 'build/classes/examples' |
| 44 | } |
| 45 | examplesAndroidN { |
| 46 | java { |
| 47 | srcDirs = ['src/test/examplesAndroidN'] |
| 48 | } |
| 49 | output.resourcesDir = 'build/classes/examplesAndroidN' |
| 50 | } |
| 51 | examplesAndroidO { |
| 52 | java { |
| 53 | srcDirs = ['src/test/examplesAndroidO'] |
| 54 | } |
| 55 | output.resourcesDir = 'build/classes/examplesAndroidO' |
| 56 | } |
| 57 | jctfCommon { |
| 58 | java { |
| 59 | srcDirs = [ |
| 60 | 'third_party/jctf/Harness/src', |
| 61 | 'third_party/jctf/LibTests/src/com/google/jctf/test/categories', |
| 62 | 'third_party/jctf/LibTests/src/com/google/jctf/test/helper', |
| 63 | 'third_party/jctf/LibTests/src/com/google/jctf/testHelpers', |
| 64 | 'third_party/jctf/LibTests/src/org', |
| 65 | 'build/additionalJctfCommonFiles' |
| 66 | ] |
| 67 | } |
| 68 | resources { |
| 69 | srcDirs = ['third_party/jctf/LibTests/resources'] |
| 70 | } |
| 71 | } |
| 72 | jctfTests { |
| 73 | java { |
| 74 | srcDirs = [ |
| 75 | 'third_party/jctf/LibTests/src/com/google/jctf/test/lib', |
| 76 | // 'third_party/jctf/VMTests/src', |
| 77 | ] |
| 78 | } |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | dependencies { |
| 83 | compile 'net.sf.jopt-simple:jopt-simple:4.6' |
| 84 | compile group: 'com.google.guava', name: 'guava', version: '19.0' |
Stephan Herhut | b17bb8d | 2017-05-23 12:34:55 +0200 | [diff] [blame] | 85 | compile group: 'it.unimi.dsi', name: 'fastutil', version: '7.2.0' |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 86 | compile group: 'org.apache.commons', name: 'commons-compress', version: '1.12' |
| 87 | compile group: 'org.ow2.asm', name: 'asm', version: '5.1' |
| 88 | compile group: 'org.ow2.asm', name: 'asm-commons', version: '5.1' |
| 89 | compile group: 'org.ow2.asm', name: 'asm-tree', version: '5.1' |
| 90 | compile group: 'org.ow2.asm', name: 'asm-util', version: '5.1' |
| 91 | testCompile sourceSets.examples.output |
| 92 | testCompile 'junit:junit:4.12' |
| 93 | testCompile group: 'org.smali', name: 'smali', version: '2.2b4' |
| 94 | testCompile files('third_party/jasmin/jasmin-2.4.jar') |
| 95 | testCompile files('third_party/jdwp-tests/apache-harmony-jdwp-tests-host.jar') |
| 96 | jctfCommonCompile 'junit:junit:4.12' |
| 97 | jctfTestsCompile 'junit:junit:4.12' |
| 98 | jctfTestsCompile sourceSets.jctfCommon.output |
| 99 | examplesAndroidOCompile group: 'org.ow2.asm', name: 'asm', version: '5.1' |
| 100 | } |
| 101 | |
Jean-Marie Henaff | 39587a8 | 2017-06-08 15:20:13 +0200 | [diff] [blame] | 102 | def osString = OperatingSystem.current().isLinux() ? "linux" : |
| 103 | OperatingSystem.current().isMacOsX() ? "mac" : "windows" |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 104 | |
| 105 | def cloudDependencies = [ |
| 106 | "tests" : [ |
| 107 | "art.tar.gz" |
| 108 | ], |
| 109 | "third_party": [ |
| 110 | "android_jar/lib-v14.tar.gz", |
| 111 | "android_jar/lib-v19.tar.gz", |
Søren Gjesse | ab22077 | 2017-06-23 13:05:53 +0200 | [diff] [blame] | 112 | "android_jar/lib-v21.tar.gz", |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 113 | "android_jar/lib-v24.tar.gz", |
| 114 | "android_jar/lib-v25.tar.gz", |
| 115 | "android_jar/lib-v26.tar.gz", |
| 116 | "proguard/proguard5.2.1.tar.gz", |
| 117 | "gradle/gradle.tar.gz", |
| 118 | "jdwp-tests.tar.gz", |
| 119 | "jasmin.tar.gz", |
| 120 | "jctf.tar.gz", |
| 121 | "android_cts_baseline.tar.gz", |
| 122 | ], |
| 123 | // All dex-vms have a fixed OS of Linux, as they are only supported on Linux, and will be run in a Docker |
| 124 | // container on other platforms where supported. |
| 125 | "tools" : [ |
| 126 | "linux/art.tar.gz", |
| 127 | "linux/art-5.1.1.tar.gz", |
| 128 | "linux/art-6.0.1.tar.gz", |
| 129 | "linux/art-7.0.0.tar.gz", |
| 130 | "linux/dalvik.tar.gz", |
| 131 | "${osString}/dx.tar.gz", |
| 132 | ] |
| 133 | ] |
| 134 | |
| 135 | cloudDependencies.each { entry -> |
| 136 | entry.value.each { entryFile -> |
| 137 | task "download_deps_${entry.key}/${entryFile}"(type: Exec) { |
| 138 | def gzFile = "${entry.key}/${entryFile}" |
| 139 | def sha1File = "${gzFile}.sha1" |
| 140 | inputs.file sha1File |
| 141 | outputs.file gzFile |
Jean-Marie Henaff | 872e442 | 2017-06-13 10:26:20 +0200 | [diff] [blame] | 142 | List<String> dlFromStorageArgs = ["-n", "-b", "r8-deps", "-u", "-s", "${sha1File}"] |
| 143 | if (OperatingSystem.current().isWindows()) { |
| 144 | executable "download_from_google_storage.bat" |
| 145 | args dlFromStorageArgs |
| 146 | } else { |
| 147 | executable "bash" |
| 148 | args "-c", "download_from_google_storage " + String.join(" ", dlFromStorageArgs) |
| 149 | } |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 150 | } |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | def x20Dependencies = [ |
| 155 | "third_party": [ |
Søren Gjesse | 5ecb04a | 2017-06-13 09:44:32 +0200 | [diff] [blame] | 156 | "gmail/gmail_android_170604.16.tar.gz", |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 157 | "gmscore/v4.tar.gz", |
| 158 | "gmscore/v5.tar.gz", |
| 159 | "gmscore/v6.tar.gz", |
| 160 | "gmscore/v7.tar.gz", |
| 161 | "gmscore/v8.tar.gz", |
| 162 | "gmscore/gmscore_v9.tar.gz", |
| 163 | "gmscore/gmscore_v10.tar.gz", |
Stephan Herhut | 4e74330 | 2017-06-09 13:09:03 +0200 | [diff] [blame] | 164 | "gmscore/latest.tar.gz", |
Mads Ager | ae64640 | 2017-06-07 13:32:43 +0200 | [diff] [blame] | 165 | "photos/2017-06-06.tar.gz", |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 166 | "youtube/youtube.android_12.10.tar.gz", |
Søren Gjesse | feac2ef | 2017-05-22 17:09:29 +0200 | [diff] [blame] | 167 | "youtube/youtube.android_12.17.tar.gz", |
Søren Gjesse | 9be8498 | 2017-06-09 14:21:03 +0200 | [diff] [blame] | 168 | "youtube/youtube.android_12.22.tar.gz", |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 169 | "proguardsettings.tar.gz", |
Tamas Kenez | 5febf24 | 2017-06-20 16:00:44 +0200 | [diff] [blame] | 170 | "proguard/proguard_internal_159423826.tar.gz", |
Tamas Kenez | 6741971 | 2017-06-26 11:11:45 +0200 | [diff] [blame] | 171 | "framework.tar.gz", |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 172 | ], |
| 173 | ] |
| 174 | |
| 175 | x20Dependencies.each { entry -> |
| 176 | entry.value.each { entryFile -> |
| 177 | task "download_deps_${entry.key}/${entryFile}"(type: Exec) { |
| 178 | def gzFile = "${entry.key}/${entryFile}" |
| 179 | def sha1File = "${gzFile}.sha1" |
| 180 | inputs.file sha1File |
| 181 | outputs.file gzFile |
| 182 | executable "bash" |
| 183 | args "-c", "tools/download_from_x20.py ${sha1File}" |
| 184 | } |
| 185 | } |
| 186 | } |
| 187 | |
Rico Wind | 897bb71 | 2017-05-23 10:44:29 +0200 | [diff] [blame] | 188 | task downloadProguard { |
| 189 | cloudDependencies.each { entry -> |
| 190 | entry.value.each { entryFile -> |
| 191 | if (entryFile.contains("proguard")) { |
| 192 | dependsOn "download_deps_${entry.key}/${entryFile}" |
| 193 | } |
| 194 | } |
| 195 | } |
| 196 | } |
| 197 | |
Tamas Kenez | 0e10c56 | 2017-06-08 10:00:34 +0200 | [diff] [blame] | 198 | task downloadAndroidCts { |
| 199 | cloudDependencies.each { entry -> |
| 200 | entry.value.each { entryFile -> |
| 201 | if (entryFile.contains("android_cts_baseline")) { |
| 202 | dependsOn "download_deps_${entry.key}/${entryFile}" |
| 203 | } |
| 204 | } |
| 205 | } |
| 206 | } |
| 207 | |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 208 | task downloadDeps { |
| 209 | cloudDependencies.each { entry -> |
| 210 | entry.value.each { entryFile -> |
| 211 | dependsOn "download_deps_${entry.key}/${entryFile}" |
| 212 | } |
| 213 | } |
| 214 | if (!project.hasProperty('no_internal')) { |
| 215 | x20Dependencies.each { entry -> |
| 216 | entry.value.each { entryFile -> |
| 217 | dependsOn "download_deps_${entry.key}/${entryFile}" |
| 218 | } |
| 219 | } |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | allprojects { |
| 224 | sourceCompatibility = JavaVersion.VERSION_1_8 |
| 225 | targetCompatibility = JavaVersion.VERSION_1_8 |
| 226 | } |
| 227 | |
| 228 | tasks.withType(JavaCompile) { |
| 229 | options.compilerArgs << '-Xlint:unchecked' |
| 230 | } |
| 231 | |
| 232 | compileJctfCommonJava { |
| 233 | dependsOn 'copyAdditionalJctfCommonFiles' |
| 234 | options.compilerArgs = ['-Xlint:none'] |
| 235 | } |
| 236 | |
| 237 | compileJctfTestsJava { |
| 238 | dependsOn 'jctfCommonClasses' |
| 239 | options.compilerArgs = ['-Xlint:none'] |
| 240 | } |
| 241 | |
| 242 | task R8(type: Jar) { |
| 243 | from sourceSets.main.output |
| 244 | baseName 'r8' |
| 245 | manifest { |
| 246 | attributes 'Main-Class': 'com.android.tools.r8.R8' |
| 247 | } |
| 248 | // In order to build without dependencies, pass the exclude_deps property using: |
| 249 | // gradle -Pexclude_deps R8 |
| 250 | if (!project.hasProperty('exclude_deps')) { |
| 251 | // Also include dependencies |
| 252 | from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | task D8(type: Jar) { |
| 257 | from sourceSets.main.output |
| 258 | baseName 'd8' |
| 259 | manifest { |
| 260 | attributes 'Main-Class': 'com.android.tools.r8.D8' |
| 261 | } |
| 262 | // In order to build without dependencies, pass the exclude_deps property using: |
| 263 | // gradle -Pexclude_deps D8 |
| 264 | if (!project.hasProperty('exclude_deps')) { |
| 265 | // Also include dependencies |
| 266 | from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | task CompatDx(type: Jar) { |
| 271 | from sourceSets.main.output |
| 272 | baseName 'compatdx' |
| 273 | manifest { |
| 274 | attributes 'Main-Class': 'com.android.tools.r8.compatdx.CompatDx' |
| 275 | } |
| 276 | // In order to build without dependencies, pass the exclude_deps property using: |
| 277 | // gradle -Pexclude_deps CompatDx |
| 278 | if (!project.hasProperty('exclude_deps')) { |
| 279 | // Also include dependencies |
| 280 | from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } |
| 281 | } |
| 282 | } |
| 283 | |
Tamas Kenez | 971eec6 | 2017-05-24 11:08:40 +0200 | [diff] [blame] | 284 | task D8Logger(type: Jar) { |
| 285 | from sourceSets.main.output |
| 286 | baseName 'd8logger' |
| 287 | manifest { |
| 288 | attributes 'Main-Class': 'com.android.tools.r8.D8Logger' |
| 289 | } |
| 290 | // In order to build without dependencies, pass the exclude_deps property using: |
| 291 | // gradle -Pexclude_deps D8Logger |
| 292 | if (!project.hasProperty('exclude_deps')) { |
| 293 | // Also include dependencies |
| 294 | from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } |
| 295 | } |
| 296 | } |
| 297 | |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 298 | task disasm(type: Jar) { |
| 299 | from sourceSets.main.output |
| 300 | baseName 'disasm' |
| 301 | manifest { |
| 302 | attributes 'Main-Class': 'com.android.tools.r8.Disassemble' |
| 303 | } |
| 304 | // In order to build without dependencies, pass the exclude_deps property using: |
| 305 | // gradle -Pexclude_deps D8 |
| 306 | if (!project.hasProperty('exclude_deps')) { |
| 307 | // Also include dependencies |
| 308 | from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | task bisect(type: Jar) { |
| 313 | from sourceSets.main.output |
| 314 | baseName 'bisect' |
| 315 | manifest { |
| 316 | attributes 'Main-Class': 'com.android.tools.r8.bisect.Bisect' |
| 317 | } |
| 318 | // In order to build without dependencies, pass the exclude_deps property using: |
| 319 | // gradle -Pexclude_deps R8 |
| 320 | if (!project.hasProperty('exclude_deps')) { |
| 321 | // Also include dependencies |
| 322 | from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } |
| 323 | } |
| 324 | } |
| 325 | |
Lars Bak | 90c1804 | 2017-06-26 14:21:08 +0200 | [diff] [blame] | 326 | task DexSegments(type: Jar) { |
| 327 | from sourceSets.main.output |
| 328 | baseName 'dexsegments' |
| 329 | manifest { |
| 330 | attributes 'Main-Class': 'com.android.tools.r8.DexSegments' |
| 331 | } |
| 332 | // In order to build without dependencies, pass the exclude_deps property using: |
| 333 | // gradle -Pexclude_deps DexSegments |
| 334 | if (!project.hasProperty('exclude_deps')) { |
| 335 | // Also include dependencies |
| 336 | from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } |
| 337 | } |
| 338 | } |
| 339 | |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 340 | task sourceJar(type: Jar, dependsOn: classes) { |
| 341 | classifier = 'src' |
| 342 | from sourceSets.main.allSource |
| 343 | } |
| 344 | |
| 345 | task jctfCommonJar(type: Jar) { |
| 346 | from sourceSets.jctfCommon.output |
| 347 | baseName 'jctfCommon' |
| 348 | } |
| 349 | |
| 350 | artifacts { |
| 351 | archives sourceJar |
| 352 | } |
| 353 | |
| 354 | task createArtTests(type: Exec) { |
| 355 | def outputDir = "build/generated/test/java/com/android/tools/r8/art" |
Mads Ager | 7e5bd72 | 2017-05-24 07:17:27 +0200 | [diff] [blame] | 356 | def createArtTestsScript = "tools/create_art_tests.py" |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 357 | inputs.file "tests/art.tar.gz" |
| 358 | inputs.file createArtTestsScript |
| 359 | outputs.dir outputDir |
| 360 | dependsOn downloadDeps |
Mads Ager | 677e300 | 2017-05-24 07:54:51 +0200 | [diff] [blame] | 361 | commandLine "python", createArtTestsScript |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 362 | workingDir = projectDir |
| 363 | } |
| 364 | |
| 365 | task createJctfTests(type: Exec) { |
Stephan Herhut | ea6ee58 | 2017-05-23 13:14:34 +0200 | [diff] [blame] | 366 | def outputDir = "build/generated/test/java/com/android/tools/r8/jctf" |
Tamas Kenez | 25a99e9 | 2017-05-29 10:15:30 +0200 | [diff] [blame] | 367 | def script = "tools/create_jctf_tests.py" |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 368 | inputs.file script |
| 369 | outputs.dir outputDir |
| 370 | dependsOn downloadDeps |
Tamas Kenez | 25a99e9 | 2017-05-29 10:15:30 +0200 | [diff] [blame] | 371 | commandLine "python", script |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 372 | workingDir = projectDir |
| 373 | } |
| 374 | |
| 375 | compileTestJava { |
| 376 | dependsOn createArtTests |
| 377 | dependsOn createJctfTests |
| 378 | } |
| 379 | |
| 380 | task buildDebugInfoExamplesDex { |
| 381 | def examplesDir = file("src/test/java") |
| 382 | def hostJar = "debuginfo_examples.jar" |
| 383 | def hostDexJar = "debuginfo_examples_dex.jar" |
| 384 | task "compile_debuginfo_examples"(type: JavaCompile) { |
| 385 | source = fileTree(dir: examplesDir, include: "com/android/tools/r8/debuginfo/*Test.java") |
| 386 | destinationDir = file("build/test/debuginfo_examples/classes") |
| 387 | classpath = sourceSets.main.compileClasspath |
| 388 | sourceCompatibility = JavaVersion.VERSION_1_7 |
| 389 | targetCompatibility = JavaVersion.VERSION_1_7 |
| 390 | options.compilerArgs += ["-Xlint:-options"] |
| 391 | } |
| 392 | task "jar_debuginfo_examples"(type: Jar, dependsOn: "compile_debuginfo_examples") { |
| 393 | archiveName = hostJar |
| 394 | destinationDir = file("build/test/") |
| 395 | from "build/test/debuginfo_examples/classes" |
| 396 | include "**/*.class" |
| 397 | } |
| 398 | task "dex_debuginfo_examples"(type: Exec, |
| 399 | dependsOn: ["jar_debuginfo_examples", "downloadDeps"]) { |
Jean-Marie Henaff | 39587a8 | 2017-06-08 15:20:13 +0200 | [diff] [blame] | 400 | if (OperatingSystem.current().isWindows()) { |
| 401 | executable file("tools/windows/dx/bin/dx.bat") |
| 402 | } else { |
| 403 | executable file("tools/linux/dx/bin/dx"); |
| 404 | } |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 405 | args "--dex" |
| 406 | args "--output=build/test/${hostDexJar}" |
| 407 | args "build/test/${hostJar}" |
| 408 | inputs.file file("build/test/${hostJar}") |
| 409 | outputs.file file("build/test/${hostDexJar}") |
| 410 | } |
| 411 | dependsOn dex_debuginfo_examples |
| 412 | } |
| 413 | |
| 414 | task buildDebugTestResourcesJars { |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 415 | def resourcesDir = file("src/test/debugTestResources") |
| 416 | def hostJar = "debug_test_resources.jar" |
| 417 | task "compile_debugTestResources"(type: JavaCompile) { |
| 418 | source = fileTree(dir: resourcesDir, include: '**/*.java') |
| 419 | destinationDir = file("build/test/debugTestResources/classes") |
| 420 | classpath = sourceSets.main.compileClasspath |
| 421 | sourceCompatibility = JavaVersion.VERSION_1_7 |
| 422 | targetCompatibility = JavaVersion.VERSION_1_7 |
| 423 | options.compilerArgs += ["-g", "-Xlint:-options"] |
| 424 | } |
| 425 | task "jar_debugTestResources"(type: Jar, dependsOn: "compile_debugTestResources") { |
| 426 | archiveName = hostJar |
| 427 | destinationDir = file("build/test/") |
| 428 | from "build/test/debugTestResources/classes" |
| 429 | include "**/*.class" |
| 430 | } |
Sebastien Hertz | 964c5c2 | 2017-05-23 15:22:23 +0200 | [diff] [blame] | 431 | def java8ResourcesDir = file("src/test/debugTestResourcesJava8") |
| 432 | def java8HostJar = "debug_test_resources_java8.jar" |
| 433 | task "compile_debugTestResourcesJava8"(type: JavaCompile) { |
| 434 | source = fileTree(dir: java8ResourcesDir, include: '**/*.java') |
| 435 | destinationDir = file("build/test/debugTestResourcesJava8/classes") |
| 436 | classpath = sourceSets.main.compileClasspath |
| 437 | sourceCompatibility = JavaVersion.VERSION_1_8 |
| 438 | targetCompatibility = JavaVersion.VERSION_1_8 |
| 439 | options.compilerArgs += ["-g", "-Xlint:-options"] |
| 440 | } |
| 441 | task "jar_debugTestResourcesJava8"(type: Jar, dependsOn: "compile_debugTestResourcesJava8") { |
| 442 | archiveName = java8HostJar |
| 443 | destinationDir = file("build/test/") |
| 444 | from "build/test/debugTestResourcesJava8/classes" |
| 445 | include "**/*.class" |
| 446 | } |
| 447 | dependsOn downloadDeps |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 448 | dependsOn jar_debugTestResources |
Sebastien Hertz | 964c5c2 | 2017-05-23 15:22:23 +0200 | [diff] [blame] | 449 | dependsOn jar_debugTestResourcesJava8 |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | task buildExampleJars { |
Rico Wind | 897bb71 | 2017-05-23 10:44:29 +0200 | [diff] [blame] | 453 | dependsOn downloadProguard |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 454 | def examplesDir = file("src/test/examples") |
Jean-Marie Henaff | 872e442 | 2017-06-13 10:26:20 +0200 | [diff] [blame] | 455 | def proguardScript |
| 456 | if (OperatingSystem.current().isWindows()) { |
| 457 | proguardScript = "third_party/proguard/proguard5.2.1/bin/proguard.bat" |
| 458 | } else { |
| 459 | proguardScript = "third_party/proguard/proguard5.2.1/bin/proguard.sh" |
| 460 | } |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 461 | task "compile_examples"(type: JavaCompile) { |
| 462 | source = fileTree(dir: examplesDir, include: '**/*.java') |
| 463 | destinationDir = file("build/test/examples/classes") |
| 464 | classpath = sourceSets.main.compileClasspath |
| 465 | sourceCompatibility = JavaVersion.VERSION_1_7 |
| 466 | targetCompatibility = JavaVersion.VERSION_1_7 |
| 467 | options.compilerArgs += ["-Xlint:-options"] |
| 468 | } |
| 469 | examplesDir.eachDir { dir -> |
| 470 | def name = dir.getName(); |
| 471 | def exampleOutputDir = file("build/test/examples"); |
| 472 | def jarName = "${name}.jar" |
| 473 | dependsOn "jar_example_${name}" |
| 474 | // The "throwing" test verifies debugging/stack info on the post-proguarded output. |
| 475 | def proguardConfigPath = "${dir}/proguard.cfg" |
| 476 | if (new File(proguardConfigPath).exists()) { |
| 477 | task "pre_proguard_example_${name}"(type: Jar, dependsOn: "compile_examples") { |
| 478 | archiveName = "${name}_pre_proguard.jar" |
| 479 | destinationDir = exampleOutputDir |
| 480 | from "build/test/examples/classes" |
| 481 | include "**/" + name + "/**/*.class" |
| 482 | } |
| 483 | def jarPath = files(tasks.getByPath("pre_proguard_example_${name}")).files.first(); |
| 484 | def proguardJarPath = "${exampleOutputDir}/${jarName}" |
| 485 | def proguardMapPath = "${exampleOutputDir}/${name}/${name}.map" |
| 486 | task "jar_example_${name}"(type: Exec, dependsOn: "pre_proguard_example_${name}") { |
| 487 | inputs.files tasks.getByPath("pre_proguard_example_${name}") |
| 488 | inputs.file proguardConfigPath |
| 489 | // Enable these to get stdout and stderr redirected to files... |
| 490 | // standardOutput = new FileOutputStream('proguard.stdout') |
| 491 | // errorOutput = new FileOutputStream('proguard.stderr') |
Jean-Marie Henaff | 872e442 | 2017-06-13 10:26:20 +0200 | [diff] [blame] | 492 | def proguardArguments = "-verbose -dontwarn java.** -injars ${jarPath}" + |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 493 | " -outjars ${proguardJarPath}" + |
| 494 | " -include ${proguardConfigPath}" + |
Jean-Marie Henaff | 872e442 | 2017-06-13 10:26:20 +0200 | [diff] [blame] | 495 | " -printmapping ${proguardMapPath}" |
| 496 | if (OperatingSystem.current().isWindows()) { |
| 497 | executable "${proguardScript}" |
| 498 | args "${proguardArguments}" |
| 499 | } else { |
| 500 | executable "bash" |
| 501 | args "-c", "${proguardScript} '${proguardArguments}'" |
| 502 | } |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 503 | outputs.file proguardJarPath |
| 504 | } |
| 505 | } else { |
| 506 | task "jar_example_${name}"(type: Jar, dependsOn: "compile_examples") { |
| 507 | archiveName = jarName |
| 508 | destinationDir = exampleOutputDir |
| 509 | from "build/test/examples/classes" |
| 510 | include "**/" + name + "/**/*.class" |
| 511 | } |
| 512 | } |
| 513 | } |
| 514 | } |
| 515 | |
| 516 | task buildExampleAndroidNJars { |
| 517 | dependsOn downloadDeps |
| 518 | def examplesDir = file("src/test/examplesAndroidN") |
| 519 | task "compile_examplesAndroidN"(type: JavaCompile) { |
| 520 | source = fileTree(dir: examplesDir, include: '**/*.java') |
| 521 | destinationDir = file("build/test/examplesAndroidN/classes") |
| 522 | classpath = sourceSets.main.compileClasspath |
| 523 | sourceCompatibility = JavaVersion.VERSION_1_8 |
| 524 | targetCompatibility = JavaVersion.VERSION_1_8 |
| 525 | options.compilerArgs += ["-Xlint:-options"] |
| 526 | } |
| 527 | examplesDir.eachDir { dir -> |
| 528 | def name = dir.getName(); |
| 529 | def exampleOutputDir = file("build/test/examplesAndroidN"); |
| 530 | def jarName = "${name}.jar" |
| 531 | dependsOn "jar_examplesAndroidN_${name}" |
| 532 | task "jar_examplesAndroidN_${name}"(type: Jar, dependsOn: "compile_examplesAndroidN") { |
| 533 | archiveName = jarName |
| 534 | destinationDir = exampleOutputDir |
| 535 | from "build/test/examplesAndroidN/classes" |
| 536 | include "**/" + name + "/**/*.class" |
| 537 | } |
| 538 | } |
| 539 | } |
| 540 | |
| 541 | |
| 542 | task buildExampleAndroidOJars { |
| 543 | dependsOn downloadDeps |
| 544 | def examplesDir = file("src/test/examplesAndroidO") |
| 545 | // NOTE: we want to enable a scenario when test needs to reference some |
| 546 | // classes generated by legacy (1.6) Java compiler to test some specific |
| 547 | // behaviour. To do so we compile all the java files located in sub-directory |
| 548 | // called 'legacy' with Java 1.6, then compile the rest of the files with |
| 549 | // Java 1.8 and a reference to previously generated 1.6 classes. |
| 550 | |
| 551 | // Compiling all classes in dirs 'legacy' with old Java version. |
| 552 | task "compile_examplesAndroidO_Legacy"(type: JavaCompile) { |
| 553 | source = fileTree(dir: examplesDir, include: '**/legacy/**/*.java') |
| 554 | destinationDir = file("build/test/examplesAndroidOLegacy/classes") |
| 555 | classpath = sourceSets.main.compileClasspath |
| 556 | sourceCompatibility = JavaVersion.VERSION_1_6 |
| 557 | targetCompatibility = JavaVersion.VERSION_1_6 |
| 558 | options.compilerArgs += ["-Xlint:-options", "-parameters"] |
| 559 | } |
| 560 | // Compiling the rest of the files as Java 1.8 code. |
| 561 | task "compile_examplesAndroidO"(type: JavaCompile) { |
| 562 | dependsOn "compile_examplesAndroidO_Legacy" |
| 563 | source = fileTree(dir: examplesDir, include: '**/*.java', exclude: '**/legacy/**/*.java') |
| 564 | destinationDir = file("build/test/examplesAndroidO/classes") |
| 565 | classpath = sourceSets.main.compileClasspath |
| 566 | classpath += files("build/test/examplesAndroidOLegacy/classes") |
| 567 | sourceCompatibility = JavaVersion.VERSION_1_8 |
| 568 | targetCompatibility = JavaVersion.VERSION_1_8 |
| 569 | options.compilerArgs += ["-Xlint:-options", "-parameters"] |
| 570 | } |
| 571 | examplesDir.eachDir { dir -> |
| 572 | def name = dir.getName(); |
| 573 | def destinationDir = file("build/test/examplesAndroidO/classes"); |
| 574 | if (file("src/test/examplesAndroidO/" + name + "/TestGenerator.java").isFile()) { |
| 575 | task "generate_examplesAndroidO_${name}"(type: JavaExec, |
| 576 | dependsOn: "compile_examplesAndroidO") { |
| 577 | main = name + ".TestGenerator" |
| 578 | classpath = files(destinationDir, sourceSets.main.compileClasspath) |
| 579 | args destinationDir |
| 580 | } |
| 581 | } else { |
| 582 | task "generate_examplesAndroidO_${name}" () {} |
| 583 | } |
| 584 | } |
| 585 | examplesDir.eachDir { dir -> |
| 586 | def name = dir.getName(); |
| 587 | def exampleOutputDir = file("build/test/examplesAndroidO"); |
| 588 | def jarName = "${name}.jar" |
| 589 | dependsOn "jar_examplesAndroidO_${name}" |
| 590 | task "jar_examplesAndroidO_${name}"(type: Jar, dependsOn: ["compile_examplesAndroidO", |
| 591 | "generate_examplesAndroidO_${name}"]) { |
| 592 | archiveName = jarName |
| 593 | destinationDir = exampleOutputDir |
| 594 | from "build/test/examplesAndroidO/classes" // Java 1.8 classes |
| 595 | from "build/test/examplesAndroidOLegacy/classes" // Java 1.6 classes |
| 596 | include "**/" + name + "/**/*.class" |
| 597 | // Do not include generator into the test runtime jar, it is not useful. |
| 598 | // Otherwise, shrinking will need ASM jars. |
| 599 | exclude "**/TestGenerator*" |
| 600 | } |
| 601 | } |
| 602 | } |
| 603 | |
| 604 | task buildExamples { |
Jean-Marie Henaff | 39587a8 | 2017-06-08 15:20:13 +0200 | [diff] [blame] | 605 | if (OperatingSystem.current().isMacOsX() || OperatingSystem.current().isWindows()) { |
| 606 | logger.lifecycle("WARNING: Testing (including building examples) is only partially supported on your " + |
| 607 | "platform (" + OperatingSystem.current().getName() + ").") |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 608 | } else if (!OperatingSystem.current().isLinux()) { |
| 609 | logger.lifecycle("WARNING: Testing (including building examples) is not supported on your platform. " + |
Jean-Marie Henaff | 39587a8 | 2017-06-08 15:20:13 +0200 | [diff] [blame] | 610 | "It is fully supported on Linux and partially supported on Mac OS and Windows") |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 611 | return; |
| 612 | } |
| 613 | dependsOn buildDebugTestResourcesJars |
| 614 | dependsOn buildExampleJars |
| 615 | dependsOn buildExampleAndroidNJars |
| 616 | dependsOn buildExampleAndroidOJars |
| 617 | def examplesDir = file("src/test/examples") |
Yohann Roussel | f820a57 | 2017-05-31 20:25:51 +0200 | [diff] [blame] | 618 | def noDexTests = [ |
| 619 | "multidex", |
| 620 | "multidex002", |
| 621 | "multidex004", |
| 622 | ] |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 623 | examplesDir.eachDir { dir -> |
| 624 | def name = dir.getName(); |
Yohann Roussel | f820a57 | 2017-05-31 20:25:51 +0200 | [diff] [blame] | 625 | if (!(name in noDexTests)) { |
| 626 | dependsOn "dex_example_${name}" |
| 627 | def exampleOutputDir = file("build/test/examples/" + name); |
| 628 | def dexPath = file("${exampleOutputDir}") |
| 629 | def debug = (name == "throwing") |
| 630 | if (!dexPath.exists()) { |
| 631 | dexPath.mkdirs() |
| 632 | } |
| 633 | task "dex_example_${name}"(type: dx.Dx, dependsOn: "jar_example_${name}") { |
| 634 | source = files(tasks.getByPath("jar_example_${name}")).asFileTree |
| 635 | destination = dexPath |
| 636 | debug = debug |
| 637 | } |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 638 | } |
| 639 | } |
| 640 | } |
| 641 | |
| 642 | task buildSmali { |
| 643 | def smaliDir = file("src/test/smali") |
| 644 | smaliDir.eachDirRecurse() { dir -> |
| 645 | def name = dir.getName(); |
| 646 | def relativeDir = smaliDir.toPath().relativize(dir.toPath()); |
| 647 | def smaliOutputDir = file("build/test/smali/" + relativeDir); |
| 648 | smaliOutputDir.mkdirs() |
| 649 | outputs.dir smaliOutputDir |
| 650 | def taskName = "smali_build_${relativeDir.toString().replace('/', '_')}" |
| 651 | def smaliFiles = fileTree(dir: dir, include: '*.smali') |
| 652 | def javaFiles = fileTree(dir: dir, include: '*.java') |
| 653 | def destDir = smaliOutputDir; |
| 654 | def destFile = destDir.toPath().resolve("${name}.dex").toFile() |
| 655 | def intermediateFileName = "${name}-intermediate.dex"; |
| 656 | def intermediateFile = destDir.toPath().resolve(intermediateFileName).toFile() |
| 657 | if (javaFiles.empty) { |
| 658 | if (!smaliFiles.empty) { |
| 659 | dependsOn "${taskName}_smali" |
| 660 | task "${taskName}_smali"(type: smali.Smali) { |
| 661 | source = smaliFiles |
| 662 | destination = destFile |
| 663 | } |
| 664 | } |
| 665 | } else { |
| 666 | dependsOn "${taskName}_dexmerger" |
| 667 | task "${taskName}_smali"(type: smali.Smali) { |
| 668 | source = smaliFiles |
| 669 | destination = intermediateFile |
| 670 | } |
| 671 | task "${taskName}_java"(type: JavaCompile) { |
| 672 | source = javaFiles |
| 673 | destinationDir destDir |
| 674 | classpath = sourceSets.main.compileClasspath |
| 675 | sourceCompatibility = JavaVersion.VERSION_1_7 |
| 676 | targetCompatibility = JavaVersion.VERSION_1_7 |
| 677 | options.compilerArgs += ["-Xlint:-options"] |
| 678 | } |
| 679 | task "${taskName}_jar"(type: Jar, dependsOn: "${taskName}_java") { |
| 680 | archiveName = "Test.jar" |
| 681 | destinationDir = destDir |
| 682 | from fileTree(dir: destDir, include: 'Test.class') |
| 683 | } |
| 684 | task "${taskName}_dx"(type: dx.Dx, dependsOn: "${taskName}_jar") { |
| 685 | source = fileTree(dir: destDir, include: 'Test.jar') |
| 686 | destination = destDir |
| 687 | } |
| 688 | task "${taskName}_dexmerger"( |
| 689 | type: dx.DexMerger, dependsOn: ["${taskName}_dx", "${taskName}_smali"]) { |
| 690 | source = fileTree(dir: destDir, include: ["classes.dex", intermediateFileName]) |
| 691 | destination = destFile |
| 692 | } |
| 693 | } |
| 694 | } |
| 695 | } |
| 696 | |
| 697 | tasks.withType(Test) { |
| 698 | def userDefinedCoresPerFork = System.getenv('R8_GRADLE_CORES_PER_FORK') |
| 699 | def coresPerFork = userDefinedCoresPerFork ? userDefinedCoresPerFork.toInteger() : 3 |
| 700 | // See https://docs.gradle.org/current/dsl/org.gradle.api.tasks.testing.Test.html. |
| 701 | maxParallelForks = Runtime.runtime.availableProcessors().intdiv(coresPerFork) ?: 1 |
| 702 | forkEvery = 0 |
| 703 | // Use the Concurrent Mark Sweep GC (CMS) to keep memory usage at a resonable level. |
| 704 | jvmArgs = ["-XX:+UseConcMarkSweepGC"] |
Søren Gjesse | af1c5e2 | 2017-06-15 12:24:03 +0200 | [diff] [blame] | 705 | if (project.hasProperty('disable_assertions')) { |
| 706 | enableAssertions = false |
| 707 | } |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 708 | } |
| 709 | |
| 710 | task buildPreNJdwpTestsJar(type: Jar) { |
| 711 | baseName = 'jdwp-tests-preN' |
| 712 | from zipTree('third_party/jdwp-tests/apache-harmony-jdwp-tests-host.jar') |
| 713 | // Exclude the classes containing java8 |
| 714 | exclude 'org/apache/harmony/jpda/tests/jdwp/InterfaceType/*.class' |
| 715 | exclude 'org/apache/harmony/jpda/tests/jdwp/ObjectReference/InvokeMethodDefault*.class' |
| 716 | includeEmptyDirs = false |
| 717 | } |
| 718 | |
| 719 | test { |
| 720 | testLogging.exceptionFormat = 'full' |
| 721 | if (project.hasProperty('print_test_stdout')) { |
| 722 | testLogging.showStandardStreams = true |
| 723 | } |
| 724 | if (project.hasProperty('dex_vm')) { |
| 725 | println "Running with non default vm: " + project.property('dex_vm') |
| 726 | systemProperty 'dex_vm', project.property('dex_vm') |
| 727 | if (project.property('dex_vm') == '5.1.1' || project.property('dex_vm') == '6.0.1') { |
| 728 | // R8 and D8 compute the dex file version number based on the input. |
| 729 | // Jack generates dex files with version 37 which art 5.1.1 and 6.0.1 will not run. |
| 730 | // Therefore we skip the jack generated art tests with those art versions. |
| 731 | exclude "com/android/tools/r8/art/jack/**" |
| 732 | } |
| 733 | } |
| 734 | if (project.hasProperty('one_line_per_test')) { |
| 735 | beforeTest { desc -> |
| 736 | println "Start executing test ${desc.name} [${desc.className}]" |
| 737 | } |
| 738 | afterTest { desc, result -> |
| 739 | println "Done executing test ${desc.name} [${desc.className}] with result: ${result.resultType}" |
| 740 | } |
| 741 | } |
| 742 | if (project.hasProperty('no_internal')) { |
| 743 | exclude "com/android/tools/r8/internal/**" |
| 744 | } |
| 745 | if (project.hasProperty('only_internal')) { |
| 746 | include "com/android/tools/r8/internal/**" |
| 747 | } |
| 748 | if (project.hasProperty('tool')) { |
| 749 | if (project.property('tool') == 'r8') { |
| 750 | exclude "com/android/tools/r8/art/*/d8/**" |
Tamas Kenez | 69c2e8b | 2017-05-31 13:41:07 +0200 | [diff] [blame] | 751 | exclude "com/android/tools/r8/jctf/d8/**" |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 752 | } else { |
| 753 | assert(project.property('tool') == 'd8') |
| 754 | exclude "com/android/tools/r8/art/*/r8/**" |
Tamas Kenez | 69c2e8b | 2017-05-31 13:41:07 +0200 | [diff] [blame] | 755 | exclude "com/android/tools/r8/jctf/r8/**" |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 756 | } |
| 757 | } |
| 758 | if (!project.hasProperty('all_tests')) { |
| 759 | exclude "com/android/tools/r8/art/dx/**" |
| 760 | exclude "com/android/tools/r8/art/jack/**" |
| 761 | } |
| 762 | // TODO(tamaskenez) enable jctf on all_tests when consolidated |
| 763 | if (!project.hasProperty('jctf') && !project.hasProperty('only_jctf')) { |
Stephan Herhut | ea6ee58 | 2017-05-23 13:14:34 +0200 | [diff] [blame] | 764 | exclude "com/android/tools/r8/jctf/**" |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 765 | } |
| 766 | if (project.hasProperty('only_jctf')) { |
Stephan Herhut | ea6ee58 | 2017-05-23 13:14:34 +0200 | [diff] [blame] | 767 | include "com/android/tools/r8/jctf/**" |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 768 | } |
| 769 | if (project.hasProperty('jctf_compile_only')) { |
| 770 | println "JCTF: compiling only" |
| 771 | systemProperty 'jctf_compile_only', '1' |
| 772 | } |
| 773 | |
Jean-Marie Henaff | 39587a8 | 2017-06-08 15:20:13 +0200 | [diff] [blame] | 774 | if (OperatingSystem.current().isLinux() |
| 775 | || OperatingSystem.current().isMacOsX() |
| 776 | || OperatingSystem.current().isWindows()) { |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 777 | if (OperatingSystem.current().isMacOsX()) { |
| 778 | logger.lifecycle("WARNING: Testing in only partially supported on Mac OS. " + |
| 779 | "Art only runs on Linux and tests requiring Art runs in a Docker container, which must be present. " + |
| 780 | "See tools/docker/README.md for details.") |
| 781 | } |
Jean-Marie Henaff | 39587a8 | 2017-06-08 15:20:13 +0200 | [diff] [blame] | 782 | if (OperatingSystem.current().isWindows()) { |
| 783 | logger.lifecycle("WARNING: Testing in only partially supported on Windows. " + |
| 784 | "Art only runs on Linux and tests requiring Art will be skipped") |
| 785 | } |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 786 | dependsOn downloadDeps |
| 787 | dependsOn buildExamples |
| 788 | dependsOn buildSmali |
| 789 | dependsOn jctfCommonJar |
| 790 | dependsOn jctfTestsClasses |
| 791 | dependsOn buildDebugInfoExamplesDex |
| 792 | dependsOn buildPreNJdwpTestsJar |
| 793 | } else { |
| 794 | logger.lifecycle("WARNING: Testing in not supported on your platform. Testing is only fully supported on " + |
Jean-Marie Henaff | 39587a8 | 2017-06-08 15:20:13 +0200 | [diff] [blame] | 795 | "Linux and partially supported on Mac OS and Windows. Art does not run on other platforms.") |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 796 | } |
| 797 | } |
| 798 | |
| 799 | // The Art tests we use for R8 are pre-build and downloaded from Google Cloud Storage. |
| 800 | // |
| 801 | // To build and upload a new set of the Art tests for use with R8 follow these steps: |
| 802 | // |
| 803 | // First of all an Android checkout is required. Currently it must be located |
| 804 | // in $HOME/android/master. |
| 805 | // |
| 806 | // TODO(ricow): simplify this |
| 807 | // |
| 808 | // Before: update the checked in art, see scripts/update-host-art.sh |
| 809 | // |
| 810 | // 1. Get an android checkout in $HOME/android/master and apply the patch from |
| 811 | // https://android-review.googlesource.com/#/c/294187/ |
| 812 | // |
| 813 | // 2. run the following commands in the Android checkout directory: |
| 814 | // |
| 815 | // source build/envsetup.sh |
| 816 | // lunch aosp_angler-userdebug |
| 817 | // make -j30 test-art-host |
| 818 | // |
| 819 | // 3. In the R8 project root directory, make sure we have a clean state before starting: |
| 820 | // tools/gradle.py downloadDeps |
| 821 | // tools/gradle.py clean |
| 822 | // rm -rf tests/art |
| 823 | // |
| 824 | // 4. Now build in the R8 checkout (-P hack to not generate dirs when not running this target) |
| 825 | // Make sure you have smali on your path, there is a build binary in the out directory of |
| 826 | // the android checkout: |
| 827 | // |
| 828 | // tools/gradle.py -Pandroid_source buildArtTests |
| 829 | // |
| 830 | // 4a. If any failures are produced in step 4, figure out what went wrong and add an entry in |
| 831 | // skippedTests with an explanation. Rerun from step 3. |
| 832 | // |
| 833 | // 5. Run the tests: |
| 834 | // tools/gradle.py clean |
| 835 | // tools/test.py |
| 836 | // |
| 837 | // 5a. If any more tests fail, either fix the issue or add them to the toBeTriaged list (note that |
| 838 | // you need to change "_" to "-" from stdout). Rerun from step 3 if anything was added to |
| 839 | // toBeTriaged. |
| 840 | // |
| 841 | // 6. To upload a new version to Google Cloud Storage |
| 842 | // cd tests |
| 843 | // upload_to_google_storage.py -a --bucket r8-deps art |
| 844 | |
| 845 | enum DexTool { |
| 846 | JACK, |
| 847 | DX |
| 848 | } |
| 849 | |
| 850 | def androidCheckoutDir = file("${System.env.HOME}/android/master") |
| 851 | def androidCheckoutJack = file("${androidCheckoutDir}/out/host/linux-x86/bin/jack"); |
| 852 | def androidCheckoutJackServer = file("${androidCheckoutDir}/out/host/linux-x86/bin/jack-admin"); |
| 853 | |
| 854 | def artTestDir = file("${androidCheckoutDir}/art/test") |
| 855 | |
| 856 | if (project.hasProperty('android_source')) { |
| 857 | task buildArtTests { |
| 858 | outputs.upToDateWhen { false } |
| 859 | def toBeTriaged = [ |
| 860 | "903-hello-tagging", |
| 861 | "904-object-allocation", |
| 862 | "905-object-free", |
| 863 | "906-iterate-heap", |
| 864 | "907-get-loaded-classes", |
| 865 | "908-gc-start-finish", |
| 866 | "954-invoke-polymorphic-verifier", |
| 867 | "955-methodhandles-smali", |
| 868 | "596-monitor-inflation", |
| 869 | ] |
| 870 | def skippedTests = toBeTriaged + [ |
| 871 | // This test produces no jar. |
| 872 | "000-nop", |
| 873 | // This does not build, as it tests the error when the application exceeds more |
| 874 | // than 65536 methods |
| 875 | "089-many-methods", |
| 876 | // Requires some jack beta jar |
| 877 | "956-methodhandles", |
| 878 | ] |
| 879 | |
| 880 | def skippedTestsDx = [ |
| 881 | // Tests with custom build scripts, where javac is not passed the options |
| 882 | // -source 1.7 -target 1.7. |
| 883 | "462-checker-inlining-across-dex-files", |
| 884 | "556-invoke-super", |
| 885 | "569-checker-pattern-replacement", |
| 886 | // These tests use jack even when --build-with-javac-dx is specified. |
| 887 | "004-JniTest", |
| 888 | "048-reflect-v8", |
| 889 | "146-bad-interface", |
| 890 | "563-checker-invoke-super", |
| 891 | "580-checker-string-fact-intrinsics", // java.lang.StringFactory |
| 892 | "604-hot-static-interface", |
| 893 | "957-methodhandle-transforms", |
| 894 | "958-methodhandle-emulated-stackframe", |
| 895 | "959-invoke-polymorphic-accessors", |
| 896 | "961-default-iface-resolution-gen", |
| 897 | "962-iface-static", |
| 898 | "963-default-range-smali", |
| 899 | "964-default-iface-init-gen", |
| 900 | "965-default-verify", |
| 901 | "966-default-conflict", |
| 902 | "967-default-ame", |
| 903 | "968-default-partial-compile-gen", |
| 904 | "969-iface-super", |
| 905 | "970-iface-super-resolution-gen", |
| 906 | "971-iface-super", |
| 907 | // These tests does not build with --build-with-javac-dx |
| 908 | "004-NativeAllocations", // Javac error |
| 909 | "031-class-attributes", |
| 910 | "138-duplicate-classes-check", |
| 911 | "157-void-class", // Javac error |
| 912 | "580-checker-string-factory-intrinsics", |
| 913 | "612-jit-dex-cache", |
| 914 | "613-inlining-dex-cache", |
| 915 | "900-hello-plugin", // --experimental agents |
| 916 | "901-hello-ti-agent", // --experimental agents |
| 917 | "902-hello-transformation", // --experimental agents |
| 918 | "909-attach-agent", // --experimental agents |
| 919 | "946-obsolete-throw", // -source 1.7 -target 1.7, but use lambda |
| 920 | "950-redefine-intrinsic", // -source 1.7 -target 1.7, but use method references |
| 921 | "951-threaded-obsolete", // -source 1.7 -target 1.7, but use lambda |
| 922 | "960-default-smali", // --experimental default-methods |
| 923 | // These tests force the build to use jack |
| 924 | "953-invoke-polymorphic-compiler", |
| 925 | "958-methodhandle-stackframe", |
| 926 | ] |
| 927 | |
| 928 | def artTestBuildDir = file("${projectDir}/tests/art") |
| 929 | |
| 930 | if (androidCheckoutDir.exists()) { |
| 931 | dependsOn downloadDeps |
| 932 | artTestBuildDir.mkdirs() |
| 933 | // Ensure Jack server is running. |
| 934 | "${androidCheckoutJackServer} start-server".execute() |
| 935 | artTestDir.eachDir { dir -> |
| 936 | def name = dir.getName(); |
| 937 | def markerFile = dir.toPath().resolve("info.txt").toFile(); |
| 938 | if (markerFile.exists() && !(name in skippedTests)) { |
| 939 | if (!(name in skippedTestsDx)) { |
| 940 | dependsOn buildArtTest(androidCheckoutDir, artTestBuildDir, dir, DexTool.DX); |
| 941 | } |
| 942 | dependsOn buildArtTest(androidCheckoutDir, artTestBuildDir, dir, DexTool.JACK); |
| 943 | } |
| 944 | } |
| 945 | } |
| 946 | doFirst { |
| 947 | if (!androidCheckoutDir.exists()) { |
| 948 | throw new InvalidUserDataException( |
| 949 | "This task requires an Android checkout in ${androidCheckoutDir}"); |
| 950 | } else if (!androidCheckoutJack.exists() || |
| 951 | !androidCheckoutJackServer.exists()) { |
| 952 | throw new InvalidUserDataException( |
| 953 | "This task requires that tools for host testing have been build in the " + |
| 954 | "Android checkout in ${androidCheckoutDir}"); |
| 955 | } |
| 956 | } |
| 957 | doLast { |
| 958 | copy { |
| 959 | from file("${androidCheckoutDir}/out/host/linux-x86/nativetest64") |
| 960 | into file("${artTestBuildDir}/lib64") |
| 961 | include 'lib*.so' |
| 962 | } |
| 963 | copy { |
| 964 | from file("${androidCheckoutDir}/out/host/linux-x86/lib64") |
| 965 | into file("${artTestBuildDir}/lib64") |
| 966 | include 'libart.so' |
| 967 | include 'libbacktrace.so' |
| 968 | include 'libbase.so' |
| 969 | include 'libc++.so' |
| 970 | include 'libcutils.so' |
| 971 | include 'liblz4.so' |
| 972 | include 'liblzma.so' |
| 973 | include 'libnativebridge.so' |
| 974 | include 'libnativeloader.so' |
| 975 | include 'libsigchain.so' |
| 976 | include 'libunwind.so' |
| 977 | include 'libziparchive.so' |
| 978 | } |
| 979 | copy { |
| 980 | from file("${androidCheckoutDir}/out/host/linux-x86/nativetest") |
| 981 | into file("${artTestBuildDir}/lib") |
| 982 | include 'lib*.so' |
| 983 | } |
| 984 | copy { |
| 985 | from file("${androidCheckoutDir}/out/host/linux-x86/lib") |
| 986 | into file("${artTestBuildDir}/lib") |
| 987 | include 'libart.so' |
| 988 | include 'libbacktrace.so' |
| 989 | include 'libbase.so' |
| 990 | include 'libc++.so' |
| 991 | include 'libcutils.so' |
| 992 | include 'liblz4.so' |
| 993 | include 'liblzma.so' |
| 994 | include 'libnativebridge.so' |
| 995 | include 'libnativeloader.so' |
| 996 | include 'libsigchain.so' |
| 997 | include 'libunwind.so' |
| 998 | include 'libziparchive.so' |
| 999 | } |
| 1000 | } |
| 1001 | } |
| 1002 | } |
| 1003 | |
| 1004 | def buildArtTest(androidCheckoutDir, artTestBuildDir, dir, dexTool) { |
| 1005 | def artTestDir = file("${androidCheckoutDir}/art/test") |
| 1006 | def artRunTestScript = file("${artTestDir}/run-test") |
| 1007 | def dxExecutable = new File("tools/linux/dx/bin/dx"); |
Jean-Marie Henaff | 34d85f7 | 2017-06-14 10:32:04 +0200 | [diff] [blame] | 1008 | def dexMergerExecutable = Utils.dexMergerExecutable() |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 1009 | def dexToolName = dexTool == DexTool.DX ? "dx" : "jack" |
| 1010 | |
| 1011 | def name = dir.getName(); |
| 1012 | def buildTask = "build_art_test_${dexToolName}_${name}" |
| 1013 | def sanitizeTask = "sanitize_art_test_${dexToolName}_${name}" |
| 1014 | def copyCheckTask = "copy_check_art_test_${dexToolName}_${name}" |
| 1015 | def smaliToDexTask = "smali_to_dex_${dexToolName}_${name}" |
| 1016 | |
| 1017 | def buildInputs = fileTree(dir: dir, include: '**/*') |
| 1018 | def testDir = file("${artTestBuildDir}/${dexToolName}/${name}") |
| 1019 | def outputJar = testDir.toPath().resolve("${name}.jar").toFile() |
| 1020 | testDir.mkdirs() |
| 1021 | if (dexTool == DexTool.DX) { |
| 1022 | task "$buildTask"(type: Exec) { |
| 1023 | outputs.upToDateWhen { false } |
| 1024 | inputs.file buildInputs |
| 1025 | executable "${artRunTestScript}" |
| 1026 | args "--host" |
| 1027 | args "--build-only" |
| 1028 | args "--build-with-javac-dx" |
| 1029 | args "--output-path", "${testDir}" |
| 1030 | args "${name}" |
| 1031 | environment DX: "${dxExecutable.absolutePath}" |
| 1032 | environment DXMERGER: "${dexMergerExecutable.absolutePath}" |
| 1033 | outputs.file outputJar |
| 1034 | } |
| 1035 | } else { |
| 1036 | assert dexTool == DexTool.JACK |
| 1037 | def javaLibs = "${androidCheckoutDir}/out/host/common/obj/JAVA_LIBRARIES" |
| 1038 | def jackClasspath = "${javaLibs}/core-libart-hostdex_intermediates/classes.jack:" + |
| 1039 | "${javaLibs}/core-oj-hostdex_intermediates/classes.jack" |
| 1040 | task "$buildTask"(type: Exec) { |
| 1041 | outputs.upToDateWhen { false } |
| 1042 | inputs.file buildInputs |
| 1043 | executable "${artRunTestScript}" |
| 1044 | args "--host" |
| 1045 | args "--build-only" |
| 1046 | args "--output-path", "${testDir}" |
| 1047 | args "${name}" |
| 1048 | environment JACK: "${androidCheckoutDir}/out/host/linux-x86/bin/jack" |
| 1049 | environment JACK_CLASSPATH: jackClasspath |
| 1050 | environment DXMERGER: "${dexMergerExecutable.absolutePath}" |
| 1051 | environment ANDROID_BUILD_TOP: "${androidCheckoutDir}" |
| 1052 | outputs.file outputJar |
| 1053 | } |
| 1054 | } |
| 1055 | task "${sanitizeTask}"(type: Exec, dependsOn: buildTask) { |
| 1056 | outputs.upToDateWhen { false } |
| 1057 | executable "/bin/bash" |
| 1058 | args "-c" |
| 1059 | args "rm -rf ${testDir}/smali_*.dex ${testDir}/*-ex.dex ${testDir}/*-ex.jar" + |
| 1060 | " ${testDir}/classes-ex ${testDir}/check" |
| 1061 | } |
| 1062 | |
| 1063 | task "${smaliToDexTask}"(type: Exec) { |
| 1064 | workingDir "${testDir}/smali" |
| 1065 | executable "/bin/bash" |
| 1066 | args "-c", "smali -o out.dex *.smali" |
| 1067 | } |
| 1068 | |
| 1069 | task "${copyCheckTask}"(type: Copy, dependsOn: sanitizeTask) { |
| 1070 | def smali_dir = file("${dir}/smali") |
| 1071 | outputs.upToDateWhen { false } |
| 1072 | if (smali_dir.exists() && dexTool == DexTool.DX) { |
| 1073 | dependsOn smaliToDexTask |
| 1074 | } |
| 1075 | from("${artTestDir}/${name}") { |
| 1076 | include 'check' |
| 1077 | } |
| 1078 | into testDir |
| 1079 | } |
| 1080 | |
| 1081 | return copyCheckTask |
| 1082 | } |
| 1083 | |
| 1084 | task javadocD8(type: Javadoc) { |
| 1085 | classpath = sourceSets.main.compileClasspath |
| 1086 | source = sourceSets.main.allJava |
| 1087 | include '**/com/android/tools/r8/BaseCommand.java' |
| 1088 | include '**/com/android/tools/r8/BaseOutput.java' |
| 1089 | include '**/com/android/tools/r8/CompilationException.java' |
| 1090 | include '**/com/android/tools/r8/CompilationMode.java' |
| 1091 | include '**/com/android/tools/r8/D8.java' |
| 1092 | include '**/com/android/tools/r8/D8Command.java' |
| 1093 | include '**/com/android/tools/r8/D8Output.java' |
| 1094 | include '**/com/android/tools/r8/Resource.java' |
| 1095 | } |