7091294: disable quicksort tests

Reviewed-by: jmasa, ysr, kvn
This commit is contained in:
John Coomes 2011-09-15 20:30:12 -07:00
parent db1c1037b5
commit 86b01d9960

View File

@ -92,6 +92,7 @@ bool QuickSort::sort_and_compare(int* arrayToSort, int* expectedResult, int leng
}
bool QuickSort::test_quick_sort() {
#if 0
tty->print_cr("test_quick_sort\n");
{
int* test_array = NULL;
@ -212,6 +213,7 @@ bool QuickSort::test_quick_sort() {
delete[] test_array;
delete[] expected_array;
}
#endif
return true;
}