From f6c66c3348a2b64e4b6472827e31f711142006e3 Mon Sep 17 00:00:00 2001 From: Kevin Brodsky Date: Thu, 17 Dec 2015 14:13:00 +0000 Subject: 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 --- test/497-inlining-and-class-loader/src/Main.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/497-inlining-and-class-loader/src/Main.java') diff --git a/test/497-inlining-and-class-loader/src/Main.java b/test/497-inlining-and-class-loader/src/Main.java index 1e27e77786..01b4bcd391 100644 --- a/test/497-inlining-and-class-loader/src/Main.java +++ b/test/497-inlining-and-class-loader/src/Main.java @@ -121,7 +121,7 @@ class Main { // Because we cleared dex cache entries, we will have to find // classes again, which require to use the correct class loader // in the presence of inlining. - new Exception().printStackTrace(); + new Exception().printStackTrace(System.out); } static Object savedResolvedMethods; -- cgit v1.2.3-59-g8ed1b