From: Nageswara R Sastry <rnsastry@linux.vnet.ibm.com>
To: ltp-list@lists.sourceforge.net
Subject: [LTP] [Patch] readlink03 test case fix
Date: Mon, 05 Sep 2011 15:47:28 +0530 [thread overview]
Message-ID: <4E64A1B8.6070501@linux.vnet.ibm.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 603 bytes --]
In readlink03 testcase,
When 'Symlink Pathname is empty' the return value was 'ENOENT' but with
newer kernels the return value is 'EINVAL'. The following patch will fix
this.
readlink03:
Before patch:
...
readlink03 9 TFAIL : readlink() failed, Symlink Pathname is empty,
errno=22, expected errno=2
...
After patch:
...
readlink03 9 TPASS : readlink(), Symlink Pathname is empty,
returned errno 22
readlink03 10 TPASS : readlink(), Symlink Pathname is empty,
returned errno 22
...
Signed-off-by: Nageswara R Sastry <rnsastry@linux.vnet.ibm.com>
--
Regards
R.Nageswara Sastry
[-- Attachment #2: readlink03.patch --]
[-- Type: text/plain, Size: 835 bytes --]
--- ltp.orig/testcases/kernel/syscalls/readlink/readlink03.c 2011-09-05 08:42:12.000000000 +0200
+++ ltp/testcases/kernel/syscalls/readlink/readlink03.c 2011-09-05 08:49:28.000000000 +0200
@@ -172,7 +172,11 @@ int main(int ac, char **av)
if (buf_size == 1) {
buf_size = sizeof(buffer);
}
-
+ if (strncmp(test_desc, "Symlink Pathname is empty", 25) == 0) {
+ if ( tst_kvercmp(2,6,39) >= 0 || tst_kvercmp(3,0,0) >= 0 ) {
+ Test_cases[i].exp_errno = EINVAL;
+ }
+ }
/*
* Call readlink(2) to test different test conditions.
* verify that it fails with -1 return value and sets
@@ -358,4 +362,4 @@ void cleanup()
tst_rmdir();
-}
\ No newline at end of file
+}
[-- Attachment #3: Type: text/plain, Size: 357 bytes --]
------------------------------------------------------------------------------
Special Offer -- Download ArcSight Logger for FREE!
Finally, a world-class log management solution at an even better
price-free! And you'll get a free "Love Thy Logs" t-shirt when you
download Logger. Secure your free ArcSight Logger TODAY!
http://p.sf.net/sfu/arcsisghtdev2dev
[-- Attachment #4: Type: text/plain, Size: 155 bytes --]
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
next reply other threads:[~2011-09-05 10:17 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-05 10:17 Nageswara R Sastry [this message]
2011-09-09 11:02 ` [LTP] [Patch] readlink03 test case fix Cyril Hrubis
-- strict thread matches above, loose matches on Subject: below --
2011-09-09 6:04 Nageswara R Sastry
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=4E64A1B8.6070501@linux.vnet.ibm.com \
--to=rnsastry@linux.vnet.ibm.com \
--cc=ltp-list@lists.sourceforge.net \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.