aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SortTest.cpp
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-05-07 14:52:12 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-05-07 14:52:12 +0000
commitc7a67cb57e43f8e140c7bd21318b5ad3e2db6b2f (patch)
treebc613305f5315455bf1c5ce93850c56f2994ad4b /tests/SortTest.cpp
parente3987da2d293c4a6d0ccaac1c4066c20fb652ee6 (diff)
Just use std qsort
Review URL: https://codereview.appspot.com/6195052 git-svn-id: http://skia.googlecode.com/svn/trunk@3846 2bbb7eff-a529-9590-31e7-b0007b416f81
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);
}