Blob Blame History Raw
From 4a4f661e80aa569a2fe2fcadeb2632db52371f79 Mon Sep 17 00:00:00 2001
From: Mattias Ellert <mattias.ellert@physics.uu.se>
Date: Fri, 21 Aug 2020 18:46:36 +0200
Subject: [PATCH] Increase timeout for PPC64

---
 tutorials/CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tutorials/CMakeLists.txt b/tutorials/CMakeLists.txt
index b49bc68209..ef6e884658 100644
--- a/tutorials/CMakeLists.txt
+++ b/tutorials/CMakeLists.txt
@@ -462,7 +462,7 @@ foreach(t ${tutorials})
   endif()
 
    # These tests on ARM64 need much more than 20 minutes - increase the timeout
-   if(ROOT_ARCHITECTURE MATCHES arm64)
+   if(ROOT_ARCHITECTURE MATCHES arm64 OR ROOT_ARCHITECTURE MATCHES ppc64)
      set(thisTestTimeout 2400) # 40m
    else()
      set(thisTestTimeout 1200) # 20m
@@ -489,7 +489,7 @@ foreach(t ${mpi_tutorials})
   string(REPLACE "/" "-" tname ${tname})
 
    # These tests on ARM64 need much more than 20 minutes - increase the timeout
-   if(ROOT_ARCHITECTURE MATCHES arm64)
+   if(ROOT_ARCHITECTURE MATCHES arm64 OR ROOT_ARCHITECTURE MATCHES ppc64)
      set(thisTestTimeout 2400) # 40m
    else()
      set(thisTestTimeout 1200) # 20m
-- 
2.28.0