Skip to content

Commit f31999b

Browse files
committed
Simplify subject() strings
Minimize extraneous verbiage in subject() strings to make the output easier to visually skim None of the PRIF procedures are functions, and the function/subroutine distinction is irrelevant in test output
1 parent 002a0a6 commit f31999b

11 files changed

+11
-11
lines changed

test/prif_co_broadcast_test.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module prif_co_broadcast_test_m
3535

3636
pure function subject() result(test_subject)
3737
character(len=:), allocatable :: test_subject
38-
test_subject = "The prif_co_broadcast subroutine"
38+
test_subject = "prif_co_broadcast"
3939
end function
4040

4141
function results() result(test_results)

test/prif_co_max_test.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module prif_co_max_test_m
2727

2828
pure function subject() result(test_subject)
2929
character(len=:), allocatable :: test_subject
30-
test_subject = "The prif_co_max subroutine"
30+
test_subject = "prif_co_max"
3131
end function
3232

3333
function results() result(test_results)

test/prif_co_min_test.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module prif_co_min_test_m
2525
contains
2626
pure function subject() result(test_subject)
2727
character(len=:), allocatable :: test_subject
28-
test_subject = "The prif_co_min subroutine"
28+
test_subject = "prif_co_min"
2929
end function
3030

3131
function results() result(test_results)

test/prif_co_reduce_test.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module prif_co_reduce_test_m
4545

4646
pure function subject() result(test_subject)
4747
character(len=:), allocatable :: test_subject
48-
test_subject = "The prif_co_reduce subroutine"
48+
test_subject = "prif_co_reduce"
4949
end function
5050

5151
function results() result(test_results)

test/prif_co_sum_test.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module prif_co_sum_test_m
2727

2828
pure function subject() result(test_subject)
2929
character(len=:), allocatable :: test_subject
30-
test_subject = "The prif_co_sum subroutine"
30+
test_subject = "prif_co_sum"
3131
end function
3232

3333
function results() result(test_results)

test/prif_coarray_inquiry_test.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module prif_coarray_inquiry_test_m
3434

3535
pure function subject() result(test_subject)
3636
character(len=:), allocatable :: test_subject
37-
test_subject = "The PRIF coarray inquiry subroutines"
37+
test_subject = "PRIF coarray inquiry procedures"
3838
end function
3939

4040
function results() result(test_results)

test/prif_image_queries_test.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module prif_image_queries_test_m
3030

3131
pure function subject() result(test_subject)
3232
character(len=:), allocatable :: test_subject
33-
test_subject = "PRIF image queries"
33+
test_subject = "PRIF image query procedures"
3434
end function
3535

3636
function results() result(test_results)

test/prif_init_test.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module prif_init_test_m
1616

1717
pure function subject() result(test_subject)
1818
character(len=:), allocatable :: test_subject
19-
test_subject = "The prif_init subroutine"
19+
test_subject = "prif_init"
2020
end function
2121

2222
function results() result(test_results)

test/prif_num_images_test.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module prif_num_images_test_m
2323

2424
pure function subject() result(test_subject)
2525
character(len=:), allocatable :: test_subject
26-
test_subject = "The prif_num_images function"
26+
test_subject = "prif_num_images"
2727
end function
2828

2929
function results() result(test_results)

test/prif_sync_images_test.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module prif_sync_images_test_m
1919

2020
pure function subject() result(test_subject)
2121
character(len=:), allocatable :: test_subject
22-
test_subject = "The prif_sync_images subroutine"
22+
test_subject = "prif_sync_images"
2323
end function
2424

2525
function results() result(test_results)

0 commit comments

Comments
 (0)