Add simple reverse sort test

This commit is contained in:
K. Lange 2024-03-05 14:43:57 +09:00
parent 34f8515d44
commit 84203501a5
2 changed files with 13 additions and 0 deletions

13
test/testSortReverse.krk Normal file
View File

@ -0,0 +1,13 @@
import random
def __main__(a,n=50000):
for j in range(n):
a.append(random.random())
a.append(42) # Forces heterogynous sorting in CPython
a.sort()
for j in range(n):
assert(a[j] <= a[j+1])
a.sort(reverse=True)
for j in range(n):
assert(a[j] >= a[j+1])
__main__([])

View File