diff mbox series

[COMMITTED] syscalls/quotactl06: Missing binary is not TBROK

Message ID 20200109142645.29728-1-chrubis@suse.cz
State Accepted
Headers show
Series [COMMITTED] syscalls/quotactl06: Missing binary is not TBROK | expand

Commit Message

Cyril Hrubis Jan. 9, 2020, 2:26 p.m. UTC
It should always result in TCONF.

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
---
 testcases/kernel/syscalls/quotactl/quotactl06.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/testcases/kernel/syscalls/quotactl/quotactl06.c b/testcases/kernel/syscalls/quotactl/quotactl06.c
index 446831ba8..a3b4517e0 100644
--- a/testcases/kernel/syscalls/quotactl/quotactl06.c
+++ b/testcases/kernel/syscalls/quotactl/quotactl06.c
@@ -154,7 +154,7 @@  static void setup(void)
 	case 0:
 		break;
 	case 255:
-		tst_brk(TBROK, "quotacheck binary not installed");
+		tst_brk(TCONF, "quotacheck binary not installed");
 		break;
 	default:
 		tst_brk(TBROK, "quotacheck exited with %i", ret);