Skip to content

Commit a433b88

Browse files
committed
Add more stressful test to catch #42 more often
Also, limit building dist_transpose more accurately: It should not be built during a CodeCoverage build (`cmake -DCMAKE_BUILD_TYPE=CodeCoverage`) but *can* be built during other Travis-CI tests.
1 parent ad94d57 commit a433b88

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,7 @@ if(opencoarrays_aware_compiler)
166166
add_mpi_test(register_rename_me 2 ${tests_root}/unit/init_register/register_rename_me)
167167
add_mpi_test(register_rename_me_too 2 ${tests_root}/unit/init_register/register_rename_me_too)
168168
add_mpi_test(allocate_as_barrier 2 ${tests_root}/unit/init_register/allocate_as_barrier)
169-
if (NOT ( APPLE AND ( DEFINED ENV{TRAVIS} ) ) )
170-
add_mpi_test(allocate_as_barrier_proc 2 ${tests_root}/unit/init_register/allocate_as_barrier_proc)
171-
endif ()
169+
add_mpi_test(allocate_as_barrier_proc 32 ${tests_root}/unit/init_register/allocate_as_barrier_proc)
172170
add_mpi_test(get_array 2 ${tests_root}/unit/send-get/get_array)
173171
add_mpi_test(send_array 2 ${tests_root}/unit/send-get/send_array)
174172
add_mpi_test(get_with_offset_1d 2 ${tests_root}/unit/send-get/get_with_offset_1d)

src/tests/integration/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
if (opencoarrays_aware_compiler)
22
add_subdirectory(coarrayHelloWorld)
3-
if (NOT (DEFINED ENV{TRAVIS}))
3+
if (NOT ("${CMAKE_BUILD_TYPE}" MATCHES "CodeCoverage"))
44
add_subdirectory(dist_transpose )
55
endif()
66
add_subdirectory(pde_solvers)

0 commit comments

Comments
 (0)