[LTP] [PATCH 2/2] removexattr/removexattr02.c: add new testcase
Cyril Hrubis
chrubis@suse.cz
Wed Feb 10 15:37:35 CET 2016
Hi!
> +#include "config.h"
> +#include <errno.h>
> +#include <sys/types.h>
> +
> +#ifdef HAVE_ATTR_XATTR_H
> +#include <attr/xattr.h>
> +#endif
> +
> +#include "test.h"
> +#include "safe_file_ops.h"
> +
> +char *TCID = "removexattr02";
> +
> +#ifdef HAVE_ATTR_XATTR_H
> +#define USER_KEY "user.test"
> +#define VALUE "test"
> +#define VALUE_SIZE 4
> +
> +static struct test_case {
> + const char *path;
> + char *name;
> + int exp_err;
> +} tc[] = {
> + /* test1 */
> + {"testfile", "user.test1", ENOATTR},
> + /* test2 */
> + {"", USER_KEY, ENOENT},
> + /* test3 */
> + {NULL, USER_KEY, EFAULT}
Here as well use (char*)-1 instead of the NULL.
> +};
> +
> +static void verify_removexattr(struct test_case *tc);
> +static void setup(void);
> +static void cleanup(void);
> +
> +int TST_TOTAL = ARRAY_SIZE(tc);
> +
> +int main(int ac, char **av)
> +{
> + int lc;
> + int i;
> +
> + tst_parse_opts(ac, av, NULL, NULL);
> +
> + setup();
> +
> + for (lc = 0; TEST_LOOPING(lc); lc++) {
> + tst_count = 0;
> + for (i = 0; i < TST_TOTAL; i++)
> + verify_removexattr(&tc[i]);
> + }
> +
> + cleanup();
> + tst_exit();
> +}
> +
> +static void verify_removexattr(struct test_case *tc)
> +{
> +
> + TEST(removexattr(tc->path, tc->name));
> + if (TEST_RETURN != -1) {
> + tst_resm(TFAIL, "removexattr() succeeded unexpectedly");
> + } else {
> + if (TEST_ERRNO != tc->exp_err) {
> + tst_resm(TFAIL | TTERRNO, "removexattr() failed "
> + "unexpectedly, expected errno is %s",
^
this may be just:
"expected %s"
to keep the messages
short and to the point
> + tst_strerrno(tc->exp_err));
> + } else {
> + tst_resm(TPASS | TTERRNO,
> + "removexattr() failed as expected");
> + }
> + }
> +}
> +
> +static void setup(void)
> +{
> + int n;
> +
> + tst_sig(NOFORK, DEF_HANDLER, cleanup);
> +
> + TEST_PAUSE;
> +
> + tst_tmpdir();
> +
> + SAFE_TOUCH(cleanup, "testfile", 0644, NULL);
> +
> + n = setxattr("testfile", USER_KEY, VALUE, VALUE_SIZE, XATTR_CREATE);
> + if (n == -1) {
> + if (errno == ENOTSUP) {
> + tst_brkm(TCONF, cleanup, "no xattr support in fs or "
> + "mounted without user_xattr option");
> + } else {
> + tst_brkm(TFAIL | TERRNO, cleanup, "setxattr() failed");
> + }
> + }
> +}
> +
> +static void cleanup(void)
> +{
> + tst_rmdir();
> +}
> +
> +#else /* HAVE_ATTR_XATTR_H */
> +int main(int ac, char **av)
> +{
> + tst_brkm(TCONF, NULL, "<attr/xattr.h> does not exist.");
> +}
> +#endif
> --
> 1.8.3.1
>
>
>
>
> --
> Mailing list info: http://lists.linux.it/listinfo/ltp
--
Cyril Hrubis
chrubis@suse.cz
More information about the Ltp
mailing list