1// Generated by `regen-test-files`. Do not edit manually. 2 3// Build rules for ART run-test `697-checker-string-append`. 4 5package { 6 // See: http://go/android-license-faq 7 // A large-scale-change added 'default_applicable_licenses' to import 8 // all of the 'license_kinds' from "art_license" 9 // to get the below license kinds: 10 // SPDX-license-identifier-Apache-2.0 11 default_applicable_licenses: ["art_license"], 12} 13 14// Test's Dex code. 15java_test { 16 name: "art-run-test-697-checker-string-append", 17 defaults: ["art-run-test-defaults"], 18 test_config_template: ":art-run-test-target-template", 19 srcs: ["src/**/*.java"], 20 data: [ 21 ":art-run-test-697-checker-string-append-expected-stdout", 22 ":art-run-test-697-checker-string-append-expected-stderr", 23 ], 24 test_suites: [ 25 "mts-art", 26 ], 27 // Include the Java source files in the test's artifacts, to make Checker assertions 28 // available to the TradeFed test runner. 29 include_srcs: true, 30} 31 32// Test's expected standard output. 33genrule { 34 name: "art-run-test-697-checker-string-append-expected-stdout", 35 out: ["art-run-test-697-checker-string-append-expected-stdout.txt"], 36 srcs: ["expected-stdout.txt"], 37 cmd: "cp -f $(in) $(out)", 38} 39 40// Test's expected standard error. 41genrule { 42 name: "art-run-test-697-checker-string-append-expected-stderr", 43 out: ["art-run-test-697-checker-string-append-expected-stderr.txt"], 44 srcs: ["expected-stderr.txt"], 45 cmd: "cp -f $(in) $(out)", 46} 47