Whamcloud - gitweb
LU-4239 tests: add missing call to test 47/58047/3
authorRobert Read <rread@ddn.com>
Tue, 11 Feb 2025 21:39:30 +0000 (16:39 -0500)
committerOleg Drokin <green@whamcloud.com>
Tue, 18 Feb 2025 05:05:07 +0000 (05:05 +0000)
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 <rread@ddn.com>
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 <green@whamcloud.com>
Reviewed-by: Andreas Dilger <adilger@whamcloud.com>
Reviewed-by: Patrick Farrell <pfarrell@whamcloud.com>
Tested-by: jenkins <devops@whamcloud.com>
Tested-by: Maloo <maloo@whamcloud.com>
lustre/tests/llapi_fid_test.c

index 641ea57..4195f81 100644 (file)
@@ -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);
 }