diff src/share/vm/utilities/quickSort.cpp @ 3948:8ab2f4108d20

7091294: disable quicksort tests Reviewed-by: jmasa, ysr, kvn
author jcoomes
date Thu, 15 Sep 2011 20:30:12 -0700
parents 04760e41b01e
children e807478bf9ca
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;
 }