Skip to content

Commit

Permalink
Disable failing MueLu test in ATDM openmp builds
Browse files Browse the repository at this point in the history
MueLu_UnitTestsTpetra_MPI_4 is failing on openmp builds
this will disable that test until it can be fixed

Issue: #3035
  • Loading branch information
fryeguy52 authored and bartlettroscoe committed Jul 4, 2018
1 parent a992c9e commit 5e52db0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions cmake/std/atdm/ATDMDevEnvSettings.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -234,3 +234,17 @@ ATDM_SET_CACHE(TPL_Netcdf_LIBRARIES "$ENV{ATDM_CONFIG_NETCDF_LIBS}" CACHE FILEPA
ATDM_SET_CACHE(TPL_DLlib_LIBRARIES "-ldl" CACHE FILEPATH)
# NOTE: Not clear why you need this since the TPL DLlib is not explicilty
# enabled anywhere in the EM-Plasma/BuildScripts files.xsxs

#
# E) Test Disables
#
# There are some tests that have to be disabled for a braod set of builds
# for example, if all openmp builds are failing a certain test then it
# makes more sense to disbale it once in this file instead of in every openmp
# buid's tweaks file
#

# Disable test that fails for all openmp builds (#3035)
IF (ATDM_USE_OPENMP)
ATDM_SET_ENABLE(MueLu_UnitTestsTpetra_MPI_4_DISABLE ON)
ENDIF()

0 comments on commit 5e52db0

Please sign in to comment.