@@ -14,6 +14,10 @@ else()
14
14
endif ()
15
15
mark_as_advanced (RUN_DEVELOPER_TESTS )
16
16
17
+ if ( NOT DEFINED ENV{OPENCOARRAYS_DEVELOPER} )
18
+ set ( ENV{OPENCOARRAYS_DEVELOPER} FALSE )
19
+ endif ()
20
+
17
21
# Name project and specify source languages
18
22
# Parse version from .VERSION file so that more info can be added and easier to get from scripts
19
23
file ( STRINGS ".VERSION" OpenCoarraysVersion
@@ -476,7 +480,7 @@ if(opencoarrays_aware_compiler)
476
480
add_mpi_test (register_alloc_comp_1 2 ${tests_root} /unit/init_register/register_alloc_comp_1 )
477
481
add_mpi_test (register_alloc_comp_2 2 ${tests_root} /unit/init_register/register_alloc_comp_2 )
478
482
add_mpi_test (register_alloc_comp_3 2 ${tests_root} /unit/init_register/register_alloc_comp_3 )
479
- if (RUN_DEVELOPER_TESTS )
483
+ if (RUN_DEVELOPER_TESTS OR $ENV{OPENCOARRAYS_DEVELOPER} )
480
484
message ( STATUS "Running Developer tests is enabled." )
481
485
add_mpi_test (async_comp_alloc 6 ${tests_root} /unit/init_register/async_comp_alloc )
482
486
# Timeout async_comp_alloc test after 3 seconds to progess past the known failure
@@ -519,7 +523,7 @@ if(opencoarrays_aware_compiler)
519
523
# GFortran PR 78505 only fixed on trunk/gcc 7
520
524
add_mpi_test (source -alloc-no-sync 8 ${tests_root} /regression/reported/source-alloc-sync )
521
525
endif ()
522
- if (RUN_DEVELOPER_TESTS )
526
+ if (RUN_DEVELOPER_TESTS OR $ENV{OPENCOARRAYS_DEVELOPER} )
523
527
add_mpi_test (convert-before-put 3 ${tests_root} /regression/reported/convert-before-put )
524
528
endif ()
525
529
add_mpi_test (event-post 3 ${tests_root} /regression/reported/event-post )
0 commit comments