Skip to content
Snippets Groups Projects
Commit 46787755 authored by Christoph Rettinger's avatar Christoph Rettinger Committed by Christoph Schwarzmeier
Browse files

Increased memory limit in test for Intel compiler

parent 7dd54044
No related merge requests found
...@@ -199,11 +199,8 @@ waLBerla_execute_test( NAME FunctionTraitsTest ) ...@@ -199,11 +199,8 @@ waLBerla_execute_test( NAME FunctionTraitsTest )
waLBerla_compile_test( FILES GridGeneratorTest.cpp ) waLBerla_compile_test( FILES GridGeneratorTest.cpp )
waLBerla_execute_test( NAME GridGeneratorTest ) waLBerla_execute_test( NAME GridGeneratorTest )
#TODO: find fix for this test with intel OneApi compiler waLBerla_compile_test( FILES MemoryUsage.cpp )
if(NOT WALBERLA_CXX_COMPILER_IS_INTELLLVM ) waLBerla_execute_test( NAME MemoryUsage )
waLBerla_compile_test( FILES MemoryUsage.cpp )
waLBerla_execute_test( NAME MemoryUsage )
endif()
waLBerla_compile_test( FILES OpenMPWrapperTest.cpp ) waLBerla_compile_test( FILES OpenMPWrapperTest.cpp )
waLBerla_execute_test( NAME OpenMPWrapperTest ) waLBerla_execute_test( NAME OpenMPWrapperTest )
......
...@@ -39,7 +39,7 @@ int main( int argc, char** argv ) ...@@ -39,7 +39,7 @@ int main( int argc, char** argv )
auto memSize = getResidentMemorySize(); auto memSize = getResidentMemorySize();
#ifdef __linux__ #ifdef __linux__
WALBERLA_CHECK_GREATER(memSize, 200000); WALBERLA_CHECK_GREATER(memSize, 200000);
WALBERLA_CHECK_LESS (memSize, 250000); WALBERLA_CHECK_LESS (memSize, 280000);
#else #else
WALBERLA_CHECK_EQUAL(memSize, 0); WALBERLA_CHECK_EQUAL(memSize, 0);
#endif #endif
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment