hotspot/test/gc/arguments/TestInitialTenuringThreshold.java
changeset 23506 9b98355e9060
parent 17397 609242d28659
child 29678 dd2f3932c21e
--- a/hotspot/test/gc/arguments/TestInitialTenuringThreshold.java	Wed Mar 26 10:54:52 2014 +0100
+++ b/hotspot/test/gc/arguments/TestInitialTenuringThreshold.java	Wed Mar 26 12:49:34 2014 +0100
@@ -1,5 +1,5 @@
 /*
-* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+* Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
@@ -63,13 +63,13 @@
     // successful tests
     runWithThresholds(0, 10, false);
     runWithThresholds(5, 5, false);
+    runWithThresholds(8, 16, false);
     // failing tests
     runWithThresholds(10, 0, true);
     runWithThresholds(9, 8, true);
     runWithThresholds(-1, 8, true);
     runWithThresholds(8, -1, true);
-    runWithThresholds(8, 16, true);
     runWithThresholds(16, 8, true);
+    runWithThresholds(8, 17, true);
   }
-}
-
+}
\ No newline at end of file