From 7493f0c713aabe1d20f4e6281090345d07d8d7a2 Mon Sep 17 00:00:00 2001 From: Cyril Bordage Date: Mon, 31 Oct 2022 09:57:10 +0100 Subject: [PATCH] LU-16277 lnet: fix bad parameter in LUTF In SimpleLustreNode, exception parameter is not passed to BaseTest that leads to this parameter not used when using remote agent. Test-Parameters: @lnet Signed-off-by: Cyril Bordage Change-Id: Ie458ef4a41dc059da8f069d8d62d365c21c9f25d Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/48985 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Frank Sehr Reviewed-by: Serguei Smirnov Reviewed-by: Oleg Drokin --- lustre/tests/lutf/python/tests-infra/lustre_node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/lutf/python/tests-infra/lustre_node.py b/lustre/tests/lutf/python/tests-infra/lustre_node.py index c3bcf08..9378fa4 100644 --- a/lustre/tests/lutf/python/tests-infra/lustre_node.py +++ b/lustre/tests/lutf/python/tests-infra/lustre_node.py @@ -14,7 +14,7 @@ from utility_paths import get_mkfs, MOUNT, UMOUNT, get_lctl, lustre_rmmod, load_ class SimpleLustreNode(BaseTest): def __init__(self, script=os.path.abspath(__file__), target=None, exceptions=True): - super().__init__(script, target=target) + super().__init__(script, target=target, exceptions=exceptions) if target and me.name != target: return self.__exceptions = exceptions -- 1.8.3.1