[Openmp-commits] [openmp] 2669ee1 - [OpenMP][AIX] Extend LIT test timeout limit (#93319)
via Openmp-commits
openmp-commits at lists.llvm.org
Fri May 24 13:00:55 PDT 2024
Author: Xing Xue
Date: 2024-05-24T16:00:51-04:00
New Revision: 2669ee117422e0a2ece69ab33c2f8d97a5c7d85a
URL: https://github.com/llvm/llvm-project/commit/2669ee117422e0a2ece69ab33c2f8d97a5c7d85a
DIFF: https://github.com/llvm/llvm-project/commit/2669ee117422e0a2ece69ab33c2f8d97a5c7d85a.diff
LOG: [OpenMP][AIX] Extend LIT test timeout limit (#93319)
When buildbots are crowded, the libomp LIT tests may hit timeouts so
extend the limit from 1800 to 3000 seconds.
Added:
Modified:
openmp/cmake/OpenMPTesting.cmake
Removed:
################################################################################
diff --git a/openmp/cmake/OpenMPTesting.cmake b/openmp/cmake/OpenMPTesting.cmake
index ab2348ae59b5f..c67ad8b1cbd9c 100644
--- a/openmp/cmake/OpenMPTesting.cmake
+++ b/openmp/cmake/OpenMPTesting.cmake
@@ -58,7 +58,7 @@ if (${OPENMP_STANDALONE_BUILD})
set(DEFAULT_LIT_ARGS "${DEFAULT_LIT_ARGS} --no-progress-bar")
endif()
if (${CMAKE_SYSTEM_NAME} MATCHES "AIX")
- set(DEFAULT_LIT_ARGS "${DEFAULT_LIT_ARGS} --time-tests --timeout=1800")
+ set(DEFAULT_LIT_ARGS "${DEFAULT_LIT_ARGS} --time-tests --timeout=3000")
endif()
set(OPENMP_LIT_ARGS "${DEFAULT_LIT_ARGS}" CACHE STRING "Options for lit.")
separate_arguments(OPENMP_LIT_ARGS)
More information about the Openmp-commits
mailing list