Skip to content

Commit 3777aa6

Browse files
committed
added tests for brick sort and brick sort parallel for c++ backend
1 parent 70bbc87 commit 3777aa6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pydatastructs/linear_data_structures/tests/test_algorithms.py

+2
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,11 @@ def test_merge_sort_parallel():
8484

8585
def test_brick_sort():
8686
_test_common_sort(brick_sort)
87+
_test_common_search(brick_sort, Backend = Backend.CPP)
8788

8889
def test_brick_sort_parallel():
8990
_test_common_sort(brick_sort_parallel, num_threads=3)
91+
_test_common_search(brick_sort_parallel, num_threads=3, Backend = Backend.CPP)
9092

9193
def test_heapsort():
9294
_test_common_sort(heapsort)

0 commit comments

Comments
 (0)