fstests: remove DMAPI tests
[xfstests-dev.git] / dmapi / src / suite1 / cmd / remove_dmattr.c
diff --git a/dmapi/src/suite1/cmd/remove_dmattr.c b/dmapi/src/suite1/cmd/remove_dmattr.c
deleted file mode 100644 (file)
index 52153b0..0000000
+++ /dev/null
@@ -1,105 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-/*
- * Copyright (c) 2000-2001 Silicon Graphics, Inc.
- * All Rights Reserved.
- */
-
-#include <lib/hsm.h>
-
-#include <getopt.h>
-#include <string.h>
-
-
-/*---------------------------------------------------------------------------
-
-Test program used to test the DMAPI function dm_remove_dmattr().  The
-command line is:
-
-       remove_dmattr [-s sid] [-u] pathname attr
-
-where pathname is the name of a file, attr is the name of the DMAPI attribute,
-and sid is the session ID whose attributes you are interested in.
-
-----------------------------------------------------------------------------*/
-
-#ifndef linux
-extern char    *sys_errlist[];
-#endif
-extern  int     optind;
-extern  char    *optarg;
-
-
-char   *Progname;
-
-static void
-usage(void)
-{
-       fprintf(stderr, "usage:\t%s [-s sid] [-u] pathname attr\n", Progname);
-       exit(1);
-}
-
-
-int
-main(
-       int     argc, 
-       char    **argv)
-{
-       dm_sessid_t     sid = DM_NO_SESSION;
-       char            *pathname;
-       dm_attrname_t   *attrnamep;
-       int             setdtime = 0;
-       void            *hanp;
-       size_t          hlen;
-       char            *name;
-       int             opt;
-
-       Progname = strrchr(argv[0], '/');
-       if (Progname) {
-               Progname++;
-       } else {
-               Progname = argv[0];
-       }
-
-       /* Crack and validate the command line options. */
-
-       while ((opt = getopt(argc, argv, "s:u")) != EOF) {
-               switch (opt) {
-               case 's':
-                       sid = atol(optarg);
-                       break;
-               case 'u':
-                       setdtime = 1;
-                       break;
-               case '?':
-                       usage();
-               }
-       }
-       if (optind + 2 != argc)
-               usage();
-       pathname = argv[optind++];
-       attrnamep = (dm_attrname_t *)argv[optind++];
-
-       if (dm_init_service(&name) == -1)  {
-               fprintf(stderr, "Can't initialize the DMAPI\n");
-               exit(1);
-       }
-       if (sid == DM_NO_SESSION)
-               find_test_session(&sid);
-
-       /* Get the file's handle. */
-
-       if (dm_path_to_handle(pathname, &hanp, &hlen)) {
-               fprintf(stderr, "can't get handle for file %s\n", pathname);
-               exit(1);
-       }
-
-       if (dm_remove_dmattr(sid, hanp, hlen, DM_NO_TOKEN, setdtime,
-          attrnamep)) {
-               fprintf(stderr, "dm_remove_dmattr failed, %s\n",
-                       strerror(errno));
-               exit(1);
-       }
-
-       dm_handle_free(hanp, hlen);
-       exit(0);
-}