Skip to content

Commit bc3d652

Browse files
committed
Commited files related to testing the sorting procedures.
Commited the stdlib_sorting test code tests/sorting/test_sorting.f90, and related CMakeLists.txt, and Makefile.manual files needed to compile the test code: tests/CMakeLists.txt, tests/Makefile.manual, tests/sorting/CMakeLists.txt, and tests/sorting/Makefile.manual. [ticket: X]
1 parent 5727398 commit bc3d652

File tree

5 files changed

+632
-0
lines changed

5 files changed

+632
-0
lines changed

src/tests/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ add_subdirectory(io)
1212
add_subdirectory(linalg)
1313
add_subdirectory(logger)
1414
add_subdirectory(optval)
15+
add_subdirectory(sorting)
1516
add_subdirectory(stats)
1617
add_subdirectory(string)
1718
add_subdirectory(system)

src/tests/Makefile.manual

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ all test clean:
66
$(MAKE) -f Makefile.manual --directory=io $@
77
$(MAKE) -f Makefile.manual --directory=logger $@
88
$(MAKE) -f Makefile.manual --directory=optval $@
9+
$(MAKE) -f Makefile.manual --directory=sorting $@
910
$(MAKE) -f Makefile.manual --directory=quadrature $@
1011
$(MAKE) -f Makefile.manual --directory=stats $@
1112
$(MAKE) -f Makefile.manual --directory=string $@

src/tests/sorting/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ADDTEST(sorting)
2+

src/tests/sorting/Makefile.manual

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PROGS_SRC = test_sorting.f90
2+
3+
include ../Makefile.manual.test.mk

0 commit comments

Comments
 (0)