summaryrefslogtreecommitdiff
path: root/test/404-optimizing-allocator/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'test/404-optimizing-allocator/Android.bp')
-rw-r--r--test/404-optimizing-allocator/Android.bp15
1 files changed, 13 insertions, 2 deletions
diff --git a/test/404-optimizing-allocator/Android.bp b/test/404-optimizing-allocator/Android.bp
index ec38c4e04f..cb7c0df1a6 100644
--- a/test/404-optimizing-allocator/Android.bp
+++ b/test/404-optimizing-allocator/Android.bp
@@ -8,13 +8,24 @@ java_test {
defaults: ["art-run-test-defaults"],
test_config_template: ":art-run-test-target-template",
srcs: ["src/**/*.java"],
- data: [":art-run-test-404-optimizing-allocator-expected-stdout"],
+ data: [
+ ":art-run-test-404-optimizing-allocator-expected-stdout",
+ ":art-run-test-404-optimizing-allocator-expected-stderr",
+ ],
}
-// Test's expected output.
+// Test's expected standard output.
genrule {
name: "art-run-test-404-optimizing-allocator-expected-stdout",
out: ["art-run-test-404-optimizing-allocator-expected-stdout.txt"],
srcs: ["expected-stdout.txt"],
cmd: "cp -f $(in) $(out)",
}
+
+// Test's expected standard error.
+genrule {
+ name: "art-run-test-404-optimizing-allocator-expected-stderr",
+ out: ["art-run-test-404-optimizing-allocator-expected-stderr.txt"],
+ srcs: ["expected-stderr.txt"],
+ cmd: "cp -f $(in) $(out)",
+}