All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH 1/3] syscalls: fix returning TCONF without device
@ 2014-06-13  1:58 Zeng Linggang
  2014-06-13  1:59 ` [LTP] [PATCH 2/3] utime/utime06.c: cleanup Zeng Linggang
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Zeng Linggang @ 2014-06-13  1:58 UTC (permalink / raw)
  To: ltp-list

The cases are:
1. mknod07
2. lchown03
3. mkdir03
4. linkat02
5. mknodat02
6. fchown04
7. mkdirat02
8. link08

Signed-off-by: Zeng Linggang <zenglg.jy@cn.fujitsu.com>
---
 testcases/kernel/syscalls/fchown/fchown04.c   | 2 +-
 testcases/kernel/syscalls/lchown/lchown03.c   | 2 +-
 testcases/kernel/syscalls/link/link08.c       | 2 +-
 testcases/kernel/syscalls/linkat/linkat02.c   | 2 +-
 testcases/kernel/syscalls/mkdir/mkdir03.c     | 2 +-
 testcases/kernel/syscalls/mkdirat/mkdirat02.c | 2 +-
 testcases/kernel/syscalls/mknod/mknod07.c     | 2 +-
 testcases/kernel/syscalls/mknodat/mknodat02.c | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/testcases/kernel/syscalls/fchown/fchown04.c b/testcases/kernel/syscalls/fchown/fchown04.c
index 68f6611..2a8b8c6 100644
--- a/testcases/kernel/syscalls/fchown/fchown04.c
+++ b/testcases/kernel/syscalls/fchown/fchown04.c
@@ -91,7 +91,7 @@ int main(int ac, char **av)
 		tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
 
 	if (!device) {
-		tst_brkm(TBROK, NULL,
+		tst_brkm(TCONF, NULL,
 			 "you must specify the device used for mounting with "
 			 "-D option");
 	}
diff --git a/testcases/kernel/syscalls/lchown/lchown03.c b/testcases/kernel/syscalls/lchown/lchown03.c
index ea8f38a..391afb4 100644
--- a/testcases/kernel/syscalls/lchown/lchown03.c
+++ b/testcases/kernel/syscalls/lchown/lchown03.c
@@ -84,7 +84,7 @@ int main(int argc, char *argv[])
 		tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
 
 	if (!device) {
-		tst_brkm(TBROK, NULL,
+		tst_brkm(TCONF, NULL,
 			 "you must specify the device used for mounting with "
 			 "-D option");
 	}
diff --git a/testcases/kernel/syscalls/link/link08.c b/testcases/kernel/syscalls/link/link08.c
index aed5479..48274b4 100644
--- a/testcases/kernel/syscalls/link/link08.c
+++ b/testcases/kernel/syscalls/link/link08.c
@@ -99,7 +99,7 @@ int main(int ac, char **av)
 		tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
 
 	if (!device) {
-		tst_brkm(TBROK, NULL,
+		tst_brkm(TCONF, NULL,
 			 "you must specify the device used for mounting with "
 			 "-D option");
 	}
diff --git a/testcases/kernel/syscalls/linkat/linkat02.c b/testcases/kernel/syscalls/linkat/linkat02.c
index b899fa6..984ede6 100644
--- a/testcases/kernel/syscalls/linkat/linkat02.c
+++ b/testcases/kernel/syscalls/linkat/linkat02.c
@@ -109,7 +109,7 @@ int main(int ac, char **av)
 		tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
 
 	if (!device) {
-		tst_brkm(TBROK, NULL,
+		tst_brkm(TCONF, NULL,
 			 "you must specify the device used for mounting with "
 			 "-D option");
 	}
diff --git a/testcases/kernel/syscalls/mkdir/mkdir03.c b/testcases/kernel/syscalls/mkdir/mkdir03.c
index b037ad3..e897c2e 100644
--- a/testcases/kernel/syscalls/mkdir/mkdir03.c
+++ b/testcases/kernel/syscalls/mkdir/mkdir03.c
@@ -96,7 +96,7 @@ int main(int ac, char **av)
 		tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
 
 	if (!device) {
-		tst_brkm(TBROK, NULL,
+		tst_brkm(TCONF, NULL,
 			 "you must specify the device used for mounting with "
 			 "-D option");
 	}
diff --git a/testcases/kernel/syscalls/mkdirat/mkdirat02.c b/testcases/kernel/syscalls/mkdirat/mkdirat02.c
index 827ad54..27de4e9 100644
--- a/testcases/kernel/syscalls/mkdirat/mkdirat02.c
+++ b/testcases/kernel/syscalls/mkdirat/mkdirat02.c
@@ -83,7 +83,7 @@ int main(int ac, char **av)
 		tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
 
 	if (!device) {
-		tst_brkm(TBROK, NULL,
+		tst_brkm(TCONF, NULL,
 			 "you must specify the device used for mounting with "
 			 "-D option");
 	}
diff --git a/testcases/kernel/syscalls/mknod/mknod07.c b/testcases/kernel/syscalls/mknod/mknod07.c
index 5311cfc..df9f8d7 100644
--- a/testcases/kernel/syscalls/mknod/mknod07.c
+++ b/testcases/kernel/syscalls/mknod/mknod07.c
@@ -106,7 +106,7 @@ int main(int ac, char **av)
 		tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
 
 	if (!device) {
-		tst_brkm(TBROK, NULL, "you must specify the device "
+		tst_brkm(TCONF, NULL, "you must specify the device "
 			 "used for mounting with -D option");
 	}
 
diff --git a/testcases/kernel/syscalls/mknodat/mknodat02.c b/testcases/kernel/syscalls/mknodat/mknodat02.c
index 3de049b..eec5b98 100644
--- a/testcases/kernel/syscalls/mknodat/mknodat02.c
+++ b/testcases/kernel/syscalls/mknodat/mknodat02.c
@@ -103,7 +103,7 @@ int main(int ac, char **av)
 		tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
 
 	if (!device) {
-		tst_brkm(TBROK, NULL, "you must specify the device "
+		tst_brkm(TCONF, NULL, "you must specify the device "
 			 "used for mounting with -D option");
 	}
 
-- 
1.9.3




------------------------------------------------------------------------------
HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions
Find What Matters Most in Your Big Data with HPCC Systems
Open Source. Fast. Scalable. Simple. Ideal for Dirty Data.
Leverages Graph Analysis for Fast Processing & Easy Data Exploration
http://p.sf.net/sfu/hpccsystems
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-06-24 13:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-13  1:58 [LTP] [PATCH 1/3] syscalls: fix returning TCONF without device Zeng Linggang
2014-06-13  1:59 ` [LTP] [PATCH 2/3] utime/utime06.c: cleanup Zeng Linggang
2014-06-13  2:01 ` [LTP] [PATCH 3/3] utime/utime06.c: add EPERM and EROFS errno testes Zeng Linggang
2014-06-13 11:56 ` [LTP] [PATCH 1/3] syscalls: fix returning TCONF without device Jan Stancek
     [not found]   ` <1402972112.2294.26.camel@G08JYZSD130126>
2014-06-17 11:11     ` chrubis
2014-06-18 15:58       ` chrubis
     [not found]         ` <1403144011.10350.8.camel@G08JYZSD130126>
     [not found]           ` <1403144473.10350.12.camel@G08JYZSD130126>
2014-06-24 13:06             ` [LTP] [PATCH v2 2/2] utime/utime06.c: add EPERM and EROFS errno testes chrubis

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.