Skip to content

Commit da7f7cd

Browse files
committed
julienne-driver: Reorder test fixtures
Reorder unit-testing to roughly start from the simplest and most fundamental features, as these are assumed to work correctly by later tests of more complicated features.
1 parent c7b3d45 commit da7f7cd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/julienne-driver.F90

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ program test_suite_driver
1818

1919
associate(test_harness => test_harness_t([ &
2020
test_fixture_t( prif_init_test_t() ) &
21-
,test_fixture_t( prif_coarray_inquiry_test_t() ) &
21+
,test_fixture_t( prif_num_images_test_t() ) &
22+
,test_fixture_t( prif_this_image_no_coarray_test_t() ) &
23+
,test_fixture_t( prif_image_queries_test_t() ) &
2224
,test_fixture_t( prif_co_broadcast_test_t() ) &
25+
,test_fixture_t( prif_co_sum_test_t() ) &
2326
,test_fixture_t( prif_co_max_test_t() ) &
2427
,test_fixture_t( prif_co_min_test_t() ) &
2528
,test_fixture_t( prif_co_reduce_test_t() ) &
26-
,test_fixture_t( prif_co_sum_test_t() ) &
27-
,test_fixture_t( prif_image_queries_test_t() ) &
28-
,test_fixture_t( prif_num_images_test_t() ) &
29+
,test_fixture_t( prif_coarray_inquiry_test_t() ) &
2930
,test_fixture_t( prif_sync_images_test_t() ) &
30-
,test_fixture_t( prif_this_image_no_coarray_test_t() ) &
3131
]))
3232
call test_harness%report_results
3333
end associate

0 commit comments

Comments
 (0)