From: Robert Read Date: Tue, 11 Feb 2025 21:39:30 +0000 (-0500) Subject: LU-4239 tests: add missing call to test X-Git-Tag: 2.16.53~119 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=8cd8f3f64d2034ea600e5ca83bf13faff0e623d9;p=fs%2Flustre-release.git 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 --- 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); }