summaryrefslogtreecommitdiff
path: root/test/492-checker-inline-invoke-interface/src
diff options
context:
space:
mode:
author Kevin Brodsky <kevin.brodsky@linaro.org> 2015-12-17 14:13:00 +0000
committer Kevin Brodsky <kevin.brodsky@linaro.org> 2017-06-02 16:53:23 +0100
commitf6c66c3348a2b64e4b6472827e31f711142006e3 (patch)
tree0795f80e2c07dc79904590ddeb0fbe55ba9e6176 /test/492-checker-inline-invoke-interface/src
parent1656ca9e6996cb555b4463e5efd4bd7e3f4fb816 (diff)
Tests: never use System.err
Always print stack traces to System.out, and replace all System.err.println()'s with System.out.println(). Follow-up of https://android-review.googlesource.com/#/c/187020/ and https://android-review.googlesource.com/#/c/407032/. Test: m test-art-host m test-art-target Change-Id: I9ab9cd955a8db25b2ec6673790e5bc924f62c88a
Diffstat (limited to 'test/492-checker-inline-invoke-interface/src')
-rw-r--r--test/492-checker-inline-invoke-interface/src/Main.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/492-checker-inline-invoke-interface/src/Main.java b/test/492-checker-inline-invoke-interface/src/Main.java
index a919690000..785c0db0eb 100644
--- a/test/492-checker-inline-invoke-interface/src/Main.java
+++ b/test/492-checker-inline-invoke-interface/src/Main.java
@@ -21,7 +21,7 @@ interface Itf {
class ForceStatic {
static {
System.out.println("Hello from clinit");
- new Exception().printStackTrace();
+ new Exception().printStackTrace(System.out);
}
static int field;
}