aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SortTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/SortTest.cpp')
-rw-r--r--tests/SortTest.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/SortTest.cpp b/tests/SortTest.cpp
index 9b4642fe2a..166cff280b 100644
--- a/tests/SortTest.cpp
+++ b/tests/SortTest.cpp
@@ -7,7 +7,6 @@
*/
#include "Test.h"
#include "SkRandom.h"
-#include "SkTSearch.h"
#include "SkTSort.h"
extern "C" {
@@ -42,10 +41,6 @@ static void TestSort(skiatest::Reporter* reporter) {
int count = rand.nextRangeU(1, SK_ARRAY_COUNT(array));
rand_array(rand, array, count);
- SkQSort(array, count, sizeof(int), compare_int);
- check_sort(reporter, "Quick", array, count);
-
- rand_array(rand, array, count);
SkTHeapSort<int>(array, count);
check_sort(reporter, "Heap", array, count);
}