Skip to content

Commit 761c2fe

Browse files
committed
test: dogfooding - use sourcery_m public interface
1 parent d2ed005 commit 761c2fe

File tree

7 files changed

+6
-13
lines changed

7 files changed

+6
-13
lines changed

test/command_line_test.f90

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module command_line_test
22
!! Verify object pattern asbtract parent
3-
use test_m, only : test_t, test_result_t
4-
use command_line_m, only : command_line_t
3+
use sourcery_m, only : test_t, test_result_t, command_line_t
54
implicit none
65

76
private

test/data_partition_test.f90

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module data_partition_test
22
!! verify data partitioning across images and data gathering
3-
use data_partition_m, only : data_partition_t
4-
use test_m, only : test_t, test_result_t
3+
use sourcery_m, only : data_partition_t, test_t, test_result_t
54
use iso_fortran_env, only : real64
65
implicit none
76

test/formats_test.f90

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module formats_test
22
!! Verify that format strings provide the desired formatting
3-
use formats_m, only : separated_values
4-
use test_m, only : test_t, test_result_t
3+
use sourcery_m, only : separated_values, test_t, test_result_t
54
implicit none
65

76
private

test/object_m_test.f90

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module object_m_test
22
!! Verify object pattern asbtract parent
3-
use test_m, only : test_t, test_result_t
4-
use object_m, only : object_t
3+
use sourcery_m, only : test_t, test_result_t, object_t
54
implicit none
65

76
private

test/string_test.f90

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
module string_test
2-
use test_m, only : test_t, test_result_t
3-
use string_m, only : string_t
2+
use sourcery_m, only : test_t, test_result_t, string_t
43
implicit none
54

65
private

test/test_result_test.f90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module test_result_test
22
!! Verify object pattern asbtract parent
33
use test_m, only : test_t, test_result_t
4-
use test_result_m, only : test_result_t
54
implicit none
65

76
private

test/user_defined_collectives_test.f90

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
module user_defined_collectives_test
2-
use user_defined_collectives_m, only : co_all
3-
use test_m, only : test_t, test_result_t
2+
use sourcery_m, only : co_all, test_t, test_result_t
43
implicit none
54

65
private

0 commit comments

Comments
 (0)