From: Cyril Bordage Date: Mon, 31 Oct 2022 08:57:10 +0000 (+0100) Subject: LU-16277 lnet: fix bad parameter in LUTF X-Git-Tag: 2.15.54~146 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=7493f0c713aabe1d20f4e6281090345d07d8d7a2;p=fs%2Flustre-release.git 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 --- 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