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
diff --git a/test/1928-exception-event-exception/src/art/Test1928.java b/test/1928-exception-event-exception/src/art/Test1928.java
index aec88a4..864de8e 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.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 {