From: Cyril Hrubis <chrubis@suse.cz>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH 2/3] syscalls/umask02: Cleanup && Convert to new API
Date: Mon, 31 Oct 2016 12:35:05 +0100 [thread overview]
Message-ID: <20161031113505.GH30590@rei.lan> (raw)
In-Reply-To: <1477882478-30693-2-git-send-email-fenggw-fnst@cn.fujitsu.com>
Hi!
> + for (umask(mskval++); mskval < 01000; mskval++) {
> + TEST(umask(mskval));
> + if (TEST_RETURN < 0) {
> + tst_res(TFAIL | TTERRNO,
> + "umask(%o) failed unexpectedly", mskval);
> + return;
> + }
Again umask() cannot fail this way. I guess that what we can do here is
to check that the return value is in a valid range, i.e.
if (TEST_RETURN < 0 || TEST_RETURN > 0777)
tst_brk(TFAIL, "umask result outside range %i", TEST_RETURN);
> - for (umask(++mskval), i = 1; mskval < 01000;
> - uret = umask(++mskval), i++) {
> - if ((uret != mskval - 1) && (mskval != 0000)) {
> - failcnt = 1;
> - tst_resm(TFAIL, "umask(%d) returned bad mask "
> - "value %d.", mskval, uret);
> - }
> + if (TEST_RETURN != mskval - 1) {
> + failflag = 1;
> + tst_res(TFAIL, "umask(%o) returned %ld, expected %d",
> + mskval, TEST_RETURN, mskval - 1);
> }
> - if (!failcnt)
> - tst_resm(TPASS, "All umask values return correct "
> - "values");
> }
> - cleanup();
> - tst_exit();
> -
> -}
--
Cyril Hrubis
chrubis@suse.cz
next prev parent reply other threads:[~2016-10-31 11:35 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-31 2:54 [LTP] [PATCH 1/3] syscalls/umask01: Cleanup && Convert to new API Guangwen Feng
2016-10-31 2:54 ` [LTP] [PATCH 2/3] syscalls/umask02: " Guangwen Feng
2016-10-31 11:35 ` Cyril Hrubis [this message]
2016-10-31 2:54 ` [LTP] [PATCH 3/3] syscalls/umask03: " Guangwen Feng
2016-10-31 11:40 ` Cyril Hrubis
2016-11-01 4:26 ` Guangwen Feng
2016-11-01 15:05 ` Cyril Hrubis
2016-11-02 2:42 ` Guangwen Feng
2016-11-02 7:14 ` [LTP] [PATCH v2] syscalls/umask01: Cleanup && Use the new API && Rename Guangwen Feng
2016-11-02 11:13 ` Cyril Hrubis
2016-10-31 11:26 ` [LTP] [PATCH 1/3] syscalls/umask01: Cleanup && Convert to new API Cyril Hrubis
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20161031113505.GH30590@rei.lan \
--to=chrubis@suse.cz \
--cc=ltp@lists.linux.it \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox