[LTP] [PATCH] syscalls/swapon03: do not fail if /proc/swaps is absent
Steve Muckle
smuckle.linux@gmail.com
Tue Feb 13 06:27:52 CET 2018
If the /proc/swaps file is absent the test should be skipped due
to incompatible configuration.
Change-Id: I38da7486b5f78831dbd8c0083a5817eb32f0aee6
Signed-off-by: Steve Muckle <smuckle.linux@gmail.com>
---
testcases/kernel/syscalls/swapon/swapon03.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/testcases/kernel/syscalls/swapon/swapon03.c b/testcases/kernel/syscalls/swapon/swapon03.c
index d3f73b044fe1..f690389c55a3 100644
--- a/testcases/kernel/syscalls/swapon/swapon03.c
+++ b/testcases/kernel/syscalls/swapon/swapon03.c
@@ -165,8 +165,7 @@ static int setup_swap(void)
/* This includes the first (header) line */
if ((fd = open("/proc/swaps", O_RDONLY)) == -1) {
- tst_brkm(TFAIL | TERRNO, cleanup,
- "Failed to find out existing number of swap files");
+ tst_brkm(TCONF, cleanup, "Unable to open /proc/swaps");
}
do {
char *p = buf;
--
2.13.6
More information about the ltp
mailing list