diff options
author | 2019-09-17 09:29:22 -0700 | |
---|---|---|
committer | 2019-09-17 16:31:34 +0000 | |
commit | 01fc470f59ec2721023b458a3a8f64e931c730c5 (patch) | |
tree | 45358e77b46342d53a9f12bae9c111204c841879 /test/1974-resize-array/src | |
parent | 7539b4073011a2a733d7a7170449519cf71866a3 (diff) |
Fix test 1974
Test 1974 would print different messages depending on if an object was
freed or not. This could cause the test to incorrectly fail.
Test: ./test.py --host
Change-Id: Idbcfdb3c08412b7ea969b6ca6d95493342598e0c
Diffstat (limited to 'test/1974-resize-array/src')
-rw-r--r-- | test/1974-resize-array/src/art/Test1974.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/1974-resize-array/src/art/Test1974.java b/test/1974-resize-array/src/art/Test1974.java index c4427c7b62..e1a18610bc 100644 --- a/test/1974-resize-array/src/art/Test1974.java +++ b/test/1974-resize-array/src/art/Test1974.java @@ -460,7 +460,7 @@ public class Test1974 { DbgPrintln("Didn't see a free of the obsolete id"); } if (!bad) { - System.out.println("Everything looks good WRT obsolete object"); + System.out.println("Everything looks good WRT obsolete object!"); } } else { if (!Arrays.stream(obsoletes_freed).anyMatch((l) -> l == globalID + 1)) { |