From ee5ff3cb3d66f3a57a98413c724c63266d5043a2 Mon Sep 17 00:00:00 2001 From: Alex Light Date: Tue, 13 Feb 2018 11:15:54 -0800 Subject: Remove full stack-trace printing from test 1928 Printing the full stack trace reveals how the test was actually run, meaning we could not run it from CTS. By making the test not print this data we can solve this problem. Test: ./test/run-test --host 1928 Bug: 73252141 Change-Id: I8afaedd179980b01240cb35dbf47c3782272d55f --- test/1928-exception-event-exception/src/art/Test1928.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/1928-exception-event-exception/src') diff --git a/test/1928-exception-event-exception/src/art/Test1928.java b/test/1928-exception-event-exception/src/art/Test1928.java index aec88a4079..864de8ea4d 100644 --- a/test/1928-exception-event-exception/src/art/Test1928.java +++ b/test/1928-exception-event-exception/src/art/Test1928.java @@ -22,7 +22,7 @@ import java.lang.reflect.Executable; import java.lang.reflect.Method; public class Test1928 { - public static boolean PRINT_FULL_EXCEPTION = true; + public static boolean PRINT_FULL_EXCEPTION = false; public static ExceptionHandler HANDLER = null; public static interface ExceptionHandler { -- cgit v1.2.3-59-g8ed1b