changeset 2721:8ab2f4108d20

7091294: disable quicksort tests Reviewed-by: jmasa, ysr, kvn
author jcoomes
date Thu, 15 Sep 2011 20:30:12 -0700
parents 558f525a6ebe
children 650d15d8f372
files src/share/vm/utilities/quickSort.cpp
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/utilities/quickSort.cpp	Thu Sep 15 19:33:39 2011 -0700
+++ b/src/share/vm/utilities/quickSort.cpp	Thu Sep 15 20:30:12 2011 -0700
@@ -92,6 +92,7 @@
 }
 
 bool QuickSort::test_quick_sort() {
+#if 0
   tty->print_cr("test_quick_sort\n");
   {
     int* test_array = NULL;
@@ -212,6 +213,7 @@
     delete[] test_array;
     delete[] expected_array;
   }
+#endif
   return true;
 }