From 8cd8f3f64d2034ea600e5ca83bf13faff0e623d9 Mon Sep 17 00:00:00 2001 From: Robert Read Date: Tue, 11 Feb 2025 16:39:30 -0500 Subject: [PATCH] LU-4239 tests: add missing call to test Fix issue in test40 in llapi_fid_test.c. The test creates a file but was not calling the helper function to do the test. Signed-off-by: Robert Read Test-Parameters: trivial testlist=sanity env=ONLY=154g,ONLY_REPEAT=100 Change-Id: Icd30476d5c2ae986d6971922ea6fc7a2c6859f33 Fixes: 2b10c0bde ("LU-4239 tests: test FID related APIs") Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/58047 Reviewed-by: Oleg Drokin Reviewed-by: Andreas Dilger Reviewed-by: Patrick Farrell Tested-by: jenkins Tested-by: Maloo --- lustre/tests/llapi_fid_test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lustre/tests/llapi_fid_test.c b/lustre/tests/llapi_fid_test.c index 641ea57..4195f81 100644 --- a/lustre/tests/llapi_fid_test.c +++ b/lustre/tests/llapi_fid_test.c @@ -567,6 +567,7 @@ static void test40(void) fd = creat(mainpath, 0); ASSERTF(fd >= 0, "creat failed for '%s': %s", mainpath, strerror(errno)); + help_test40(); close(fd); } -- 1.8.3.1