[LTP] [PATCH] statvfs02: Convert to new LTP API
Avinesh Kumar
akumar@suse.de
Thu Nov 24 16:42:09 CET 2022
Signed-off-by: Avinesh Kumar <akumar@suse.de>
---
testcases/kernel/syscalls/statvfs/statvfs02.c | 117 +++++-------------
1 file changed, 34 insertions(+), 83 deletions(-)
diff --git a/testcases/kernel/syscalls/statvfs/statvfs02.c b/testcases/kernel/syscalls/statvfs/statvfs02.c
index 927cedc6e..8aaa47318 100644
--- a/testcases/kernel/syscalls/statvfs/statvfs02.c
+++ b/testcases/kernel/syscalls/statvfs/statvfs02.c
@@ -1,119 +1,70 @@
+// SPDX-License-Identifier: GPL-2.0
+
/*
* Copyright (c) 2014 Fujitsu Ltd.
* Author: Zeng Linggang <zenglg.jy@cn.fujitsu.com>
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of version 2 of the GNU General Public License as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it would be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * Copyright (c) 2022 SUSE LLC Avinesh Kumar <avinesh.kumar@suse.com>
*/
-/*
- * Test Description:
- * Verify that,
- * 1. path is NULL, EFAULT would return.
- * 2. Too many symbolic links were encountered in translating path,
- * ELOOP would return.
- * 3. path is too long, ENAMETOOLONG would return.
- * 4. The file referred to by path does not exist, ENOENT would return.
- * 5. A component of the path prefix of path is not a directory,
- * ENOENT would return.
+
+/*\
+ * [Description]
+ *
+ * Verify that statvfs() fails with:
+ * - EFAULT when path points to an invalid address.
+ * - ELOOP when too many symbolic links were encountered in translating path.
+ * - ENAMETOOLONG when path is too long.
+ * - ENOENT when the file referred to by path does not exist.
+ * - ENOTDIR a component of the path prefix of path is not a directory.
*/
-#include <errno.h>
#include <sys/statvfs.h>
-#include <sys/mman.h>
-#include "test.h"
-#include "safe_macros.h"
+#include "tst_test.h"
#define TEST_SYMLINK "statvfs_symlink"
#define TEST_FILE "statvfs_file"
-char *TCID = "statvfs02";
-
static struct statvfs buf;
static char nametoolong[PATH_MAX+2];
-static void setup(void);
-static void cleanup(void);
-static struct test_case_t {
+static struct tcase {
char *path;
struct statvfs *buf;
int exp_errno;
-} test_cases[] = {
- {NULL, &buf, EFAULT},
+} tcases[] = {
+ {(char *)-1, &buf, EFAULT},
{TEST_SYMLINK, &buf, ELOOP},
{nametoolong, &buf, ENAMETOOLONG},
{"filenoexist", &buf, ENOENT},
{"statvfs_file/test", &buf, ENOTDIR},
};
-int TST_TOTAL = ARRAY_SIZE(test_cases);
-static void statvfs_verify(const struct test_case_t *);
-
-int main(int argc, char **argv)
-{
- int i, lc;
-
- tst_parse_opts(argc, argv, NULL, NULL);
-
- setup();
-
- for (lc = 0; TEST_LOOPING(lc); lc++) {
- tst_count = 0;
- for (i = 0; i < TST_TOTAL; i++)
- statvfs_verify(&test_cases[i]);
- }
-
- cleanup();
- tst_exit();
-}
-
static void setup(void)
{
- tst_sig(NOFORK, DEF_HANDLER, cleanup);
-
- TEST_PAUSE;
+ unsigned int i;
- tst_tmpdir();
-
- SAFE_SYMLINK(cleanup, TEST_SYMLINK, "statfs_symlink_2");
- SAFE_SYMLINK(cleanup, "statfs_symlink_2", TEST_SYMLINK);
+ SAFE_SYMLINK(TEST_SYMLINK, "symlink_2");
+ SAFE_SYMLINK("symlink_2", TEST_SYMLINK);
memset(nametoolong, 'a', PATH_MAX+1);
+ SAFE_TOUCH(TEST_FILE, 0644, NULL);
- SAFE_TOUCH(cleanup, TEST_FILE, 0644, NULL);
-
- test_cases[0].path = SAFE_MMAP(cleanup, NULL, 1, PROT_NONE,
- MAP_PRIVATE | MAP_ANONYMOUS, 0, 0);
+ for (i = 0; i < ARRAY_SIZE(tcases); i++) {
+ if (tcases[i].path == (char *)-1)
+ tcases[i].path = tst_get_bad_addr(NULL);
+ }
}
-static void statvfs_verify(const struct test_case_t *test)
+static void run(unsigned int i)
{
- TEST(statvfs(test->path, test->buf));
+ struct tcase *tc = &tcases[i];
- if (TEST_RETURN != -1) {
- tst_resm(TFAIL, "statvfs() succeeded unexpectedly");
- return;
- }
-
- if (TEST_ERRNO == test->exp_errno) {
- tst_resm(TPASS | TTERRNO, "statvfs() failed as expected");
- } else {
- tst_resm(TFAIL | TTERRNO,
- "statvfs() failed unexpectedly; expected: %d - %s",
- test->exp_errno, strerror(test->exp_errno));
- }
+ TST_EXP_FAIL(statvfs(tc->path, tc->buf), tc->exp_errno);
}
-static void cleanup(void)
-{
- tst_rmdir();
-}
+static struct tst_test test = {
+ .setup = setup,
+ .test = run,
+ .tcnt = ARRAY_SIZE(tcases),
+ .needs_tmpdir = 1
+};
--
2.38.1
More information about the ltp
mailing list