From 570793a9893f2e36456188be8e0aff6180ec0864 Mon Sep 17 00:00:00 2001 From: Nick Desaulniers Date: Thu, 18 Jun 2020 10:56:15 -0700 Subject: [PATCH] Increase aarch64 timeout from 2m to 5m Changing -cpu to max in https://github.com/ClangBuiltLinux/boot-utils/pull/20 for PAC+BTI emulation seems to have slowed our boot tests down. Fixes: https://github.com/ClangBuiltLinux/linux/issues/1058 Signed-off-by: Nick Desaulniers --- driver.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/driver.sh b/driver.sh index ad8a97b..d560a45 100755 --- a/driver.sh +++ b/driver.sh @@ -83,6 +83,7 @@ setup_variables() { *) config=defconfig ;; esac make_target=Image.gz + timeout=5 # Bump the timeout to 5m. export CROSS_COMPILE=aarch64-linux-gnu- ;;