[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1] automation: fix xilinx test timeout length
- To: <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: <victorm.lira@xxxxxxx>
- Date: Fri, 23 Aug 2024 19:42:21 -0700
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=lists.xenproject.org smtp.mailfrom=amd.com; dmarc=pass (p=quarantine sp=quarantine pct=100) action=none header.from=amd.com; dkim=none (message not signed); arc=none (0)
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=yvukApYh2cNAgH3afRlUJ4g2tf9O96IyWGdH6wEQuVI=; b=LtZ/TGftf1OldBhGmxX4WNZX95WLZBKUOVwNsLmp7PJEFJ51vo2NhIKbJl7vhfYVaDlH974H8hBWK2spoK7M66doSeGHxEW6ZX9vVhZwrklOMeeedJJW/rikgWv9vhUa7zMVFIXRTGv+Hz4hkU9dQMoKKVNeyyotzz9MyjpArTtuTxHbjLe372cDvGeCmMtXOW9uAlZ+4myahyPtMS/Ujdy0YFFPyJU/5pisiK74L2tpmBTrUnh+Ez3P1McnKXVQ5cgCRqlGD6tXSDIg18A3tr2gNXoieT5AckuUagpTvQDHigo+FTyCFIBDTgkyDsULWI0rJ1Oqt7okXrl2nqkSWQ==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=UgNsg3KeLpDjG4WXfXehliq4ua7QBFab9NSFkRH2zJhXOWRk3fYNqsYbIM4aoDS0Jkrle91bDdas75EcjqOL1WsinlkQjBIfwkn2xCT3slkjsq6ji00WXZPyp2EJ2/IfT+yHc08lbFzGzGG+6iOjKlDGe++O4kMKrtZH+5Z3UB2ypykN4lNXAa31iU2UhWvNhSkqvhRf04VBUrrBHQJzKekgMuPx8AaJsFvdokO2I1aJdB1PscqcR7k8EKwFl+ueqCJt43Yidm7gDZULdooRM6JlrN0YEVRMn7iBqF0tTxdDX8y2hlaLIRYJ/sP9XX4pCsxuxIrYsZOSwp1jaQyTNQ==
- Cc: Victor Lira <victorm.lira@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>
- Delivery-date: Sat, 24 Aug 2024 02:42:55 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
From: Victor Lira <victorm.lira@xxxxxxx>
The timout is too short which causes the test to sometimes fail.
---
Cc: Stefano Stabellini <sstabellini@xxxxxxxxxx>
---
automation/scripts/xilinx-smoke-dom0-x86_64.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/automation/scripts/xilinx-smoke-dom0-x86_64.sh
b/automation/scripts/xilinx-smoke-dom0-x86_64.sh
index 4559e2b9ee..2b4d5f6af8 100755
--- a/automation/scripts/xilinx-smoke-dom0-x86_64.sh
+++ b/automation/scripts/xilinx-smoke-dom0-x86_64.sh
@@ -27,7 +27,7 @@ memory = 512
vif = [ "bridge=xenbr0", ]
disk = [ ]
'
-TIMEOUT_SECONDS=200
+TIMEOUT_SECONDS=300
# Select test variant.
if [ "${TEST}" = "ping" ]; then
--
2.37.6
|