# HG changeset patch # User jcoomes # Date 1316143812 25200 # Node ID 8ab2f4108d20d9d9bc416e5d412712f0d9cf48d1 # Parent 558f525a6ebe3f88cb933aadff1d3821fbeb66a5 7091294: disable quicksort tests Reviewed-by: jmasa, ysr, kvn diff -r 558f525a6ebe -r 8ab2f4108d20 src/share/vm/utilities/quickSort.cpp --- 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; }