# HG changeset patch # User jcoomes # Date 1316143812 25200 # Node ID 7d88fcd1ee13db6c2b5ae11f969ee8d2354f26a6 # Parent e03b812a3e3c2bfdbce04d47f3372d5294d8efca 7091294: disable quicksort tests Reviewed-by: jmasa, ysr, kvn diff -r e03b812a3e3c -r 7d88fcd1ee13 hotspot/src/share/vm/utilities/quickSort.cpp --- a/hotspot/src/share/vm/utilities/quickSort.cpp Thu Sep 15 19:33:39 2011 -0700 +++ b/hotspot/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; }