From 9f8ba0c604e97d9edcdcee0af80c8eaa68b71282 Mon Sep 17 00:00:00 2001 From: Nitzan Mordechai Date: Thu, 22 Dec 2022 05:49:42 +0000 Subject: [PATCH] test: Increase test alarm time Waiting to watch_notify callback can take some time during heavy tests that run under rados/test.sh for example. Increasing the alarm time will allow the task to complete under those conditions. Fixing: https://tracker.ceph.com/issues/58130 Signed-off-by: Nitzan Mordechai (cherry picked from commit 9f0dd4728d5cb3ebb46869fe2ddd1f1e8a2c7b9f) --- src/test/librados/test_shared.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/librados/test_shared.h b/src/test/librados/test_shared.h index 6f3747e7b41c1..3a18e916e2e4d 100644 --- a/src/test/librados/test_shared.h +++ b/src/test/librados/test_shared.h @@ -21,7 +21,7 @@ class TestAlarm public: #ifndef _WIN32 TestAlarm() { - alarm(1200); + alarm(2400); } ~TestAlarm() { alarm(0); -- 2.39.5