[LTP] [PATCH 3/3] syscalls/umask03: Cleanup && Convert to new API
Guangwen Feng
fenggw-fnst@cn.fujitsu.com
Mon Oct 31 03:54:38 CET 2016
Signed-off-by: Guangwen Feng <fenggw-fnst@cn.fujitsu.com>
---
testcases/kernel/syscalls/umask/umask03.c | 172 +++++++++---------------------
1 file changed, 48 insertions(+), 124 deletions(-)
diff --git a/testcases/kernel/syscalls/umask/umask03.c b/testcases/kernel/syscalls/umask/umask03.c
index e10009c..30c28ca 100644
--- a/testcases/kernel/syscalls/umask/umask03.c
+++ b/testcases/kernel/syscalls/umask/umask03.c
@@ -1,155 +1,79 @@
/*
+ * Copyright (c) International Business Machines Corp., 2001
+ * 07/2001 Ported by John George
*
- * Copyright (c) International Business Machines Corp., 2001
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * 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. See
+ * the GNU General Public License for more details.
*
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
- * the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ * 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.
*/
/*
- * NAME
- * umask03.c
- *
- * DESCRIPTION
- * Check that umask changes the mask, and that the previous
- * value of the mask is returned correctly for each value.
- *
- * ALGORITHM
- * For each mask value (9 bits) set mask, and check that the return
- * corresponds to the previous value set.
- *
- * USAGE: <for command-line>
- * umask03 [-c n] [-i n] [-I x] [-P x] [-t]
- * where, -c n : Run n copies concurrently.
- * -i n : Execute test n times.
- * -I x : Execute test for x seconds.
- * -P x : Pause for x seconds between iterations.
- * -t : Turn on syscall timing.
- *
- * History
- * 07/2001 John George
- * -Ported
- *
- * Restrictions
- * None
+ * umask(2) sets the mask from 0000 to 0777 while we create files,
+ * then the file mode should be correct for each creation mask.
*/
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
+#include <errno.h>
#include <stdio.h>
-#include "test.h"
#include <sys/types.h>
#include <sys/stat.h>
+#include "tst_test.h"
-char *TCID = "umask03";
-int TST_TOTAL = 1;
-
-char filname[40];
-
-void setup(void);
-void cleanup(void);
+static char filename[40];
-int main(int argc, char **argv)
+static void verify_umask(void)
{
- int lc;
-
struct stat statbuf;
- int mskval = 0000;
- int failcnt = 0;
- int fildes, i;
+ int mskval;
+ int fd;
+ int failflag = 0;
unsigned low9mode;
- tst_parse_opts(argc, argv, NULL, NULL);
+ for (mskval = 0000; mskval < 01000; mskval++) {
+ TEST(umask(mskval));
+ if (TEST_RETURN < 0) {
+ tst_res(TFAIL | TTERRNO,
+ "umask(%o) failed unexpectedly", mskval);
+ return;
+ }
- setup(); /* global setup */
+ fd = SAFE_CREAT(filename, 0777);
+ SAFE_CLOSE(fd);
- for (lc = 0; TEST_LOOPING(lc); lc++) {
+ SAFE_STAT(filename, &statbuf);
- /* reset tst_count in case we are looping */
- tst_count = 0;
+ low9mode = statbuf.st_mode & 0777;
- for (umask(mskval = 0077), i = 1; mskval < 01000;
- i++, umask(++mskval)) {
- unlink(filname);
- if ((fildes = creat(filname, 0777)) == -1) {
- tst_resm(TBROK, "cannot create "
- "file with mskval 0%o %d",
- mskval, mskval);
- } else {
- if (fstat(fildes, &statbuf) != 0) {
- tst_resm(TBROK, "cannot fstat file");
- } else {
- low9mode = statbuf.st_mode & 0777;
- if (low9mode != (~mskval & 0777)) {
- tst_resm(TFAIL,
- "got %o expected %o"
- "mask didnot take",
- low9mode,
- (~mskval & 0777));
- }
- }
- }
- close(fildes);
+ if (low9mode != (~mskval & 0777)) {
+ failflag = 1;
+ tst_res(TFAIL, "File mode got %o, expected %o",
+ low9mode, ~mskval & 0777);
}
- if (!failcnt)
- tst_resm(TPASS, "umask correctly returns the "
- "previous value for all masks");
+
+ SAFE_UNLINK(filename);
}
- cleanup();
- tst_exit();
+ if (!failflag)
+ tst_res(TPASS, "All files' mode created correctly");
}
-/*
- * setup
- * performs all ONE TIME setup for this test
- */
void setup(void)
{
-
- tst_sig(NOFORK, DEF_HANDLER, cleanup);
-
- /* Pause if that option was specified
- * TEST_PAUSE contains the code to fork the test with the -i option.
- * You want to make sure you do this before you create your temporary
- * directory.
- */
- TEST_PAUSE;
-
- /* make temp dir and cd to it */
- tst_tmpdir();
-
- sprintf(filname, "umask2.%d", getpid());
+ sprintf(filename, "umask03.%d", getpid());
}
-/*
- * cleanup
- * performs all ONE TIME cleanup for this test at completion or
- * premature exit
- */
-void cleanup(void)
-{
-
- /*
- * cleanup the temporary files and the temporary directory
- */
- unlink(filname);
- tst_rmdir();
-
- /*
- * exit with return code appropriate for results
- */
-
-}
+static struct tst_test test = {
+ .tid = "umask03",
+ .needs_tmpdir = 1,
+ .setup = setup,
+ .test_all = verify_umask,
+};
--
1.8.4.2
More information about the ltp
mailing list