summaryrefslogtreecommitdiff
path: root/test/1998-structural-shadow-field/Android.bp
blob: ef3b418fa66f6beeaf307424f0c2a8892e297f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Generated by `regen-test-files`. Do not edit manually.

// Build rules for ART run-test `1998-structural-shadow-field`.

package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "art_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-Apache-2.0
    default_applicable_licenses: ["art_license"],
}

// Test's Dex code.
java_test {
    name: "art-run-test-1998-structural-shadow-field",
    defaults: ["art-run-test-defaults"],
    test_config_template: ":art-run-test-target-no-test-suite-tag-template",
    srcs: ["src/**/*.java"],
    data: [
        ":art-run-test-1998-structural-shadow-field-expected-stdout",
        ":art-run-test-1998-structural-shadow-field-expected-stderr",
    ],
}

// Test's expected standard output.
genrule {
    name: "art-run-test-1998-structural-shadow-field-expected-stdout",
    out: ["art-run-test-1998-structural-shadow-field-expected-stdout.txt"],
    srcs: ["expected-stdout.txt"],
    cmd: "cp -f $(in) $(out)",
}

// Test's expected standard error.
genrule {
    name: "art-run-test-1998-structural-shadow-field-expected-stderr",
    out: ["art-run-test-1998-structural-shadow-field-expected-stderr.txt"],
    srcs: ["expected-stderr.txt"],
    cmd: "cp -f $(in) $(out)",
}