diff --git a/src/sort/sort_test.go b/src/sort/sort_test.go index 08a9bf6144..45713a28cc 100644 --- a/src/sort/sort_test.go +++ b/src/sort/sort_test.go @@ -245,7 +245,7 @@ func BenchmarkStableInt1K_Slice(b *testing.B) { for i := 0; i < b.N; i++ { copy(data, unsorted) b.StartTimer() - Slice(data, func(i, j int) bool { return data[i] < data[j] }) + SliceStable(data, func(i, j int) bool { return data[i] < data[j] }) b.StopTimer() } } @@ -263,6 +263,19 @@ func BenchmarkSortInt64K(b *testing.B) { } } +func BenchmarkSortInt64K_Slice(b *testing.B) { + b.StopTimer() + for i := 0; i < b.N; i++ { + data := make([]int, 1<<16) + for i := 0; i < len(data); i++ { + data[i] = i ^ 0xcccc + } + b.StartTimer() + Slice(data, func(i, j int) bool { return data[i] < data[j] }) + b.StopTimer() + } +} + func BenchmarkStableInt64K(b *testing.B) { b.StopTimer() for i := 0; i < b.N; i++ {