summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/sys/t_chroot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libc/sys/t_chroot.c')
-rw-r--r--src/regress/lib/libc/sys/t_chroot.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/regress/lib/libc/sys/t_chroot.c b/src/regress/lib/libc/sys/t_chroot.c
index 1fbe392a88..b2bc16e49e 100644
--- a/src/regress/lib/libc/sys/t_chroot.c
+++ b/src/regress/lib/libc/sys/t_chroot.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: t_chroot.c,v 1.1.1.1 2019/11/19 19:57:03 bluhm Exp $ */ 1/* $OpenBSD: t_chroot.c,v 1.2 2020/11/09 23:18:51 bluhm Exp $ */
2/* $NetBSD: t_chroot.c,v 1.2 2017/01/10 22:36:29 christos Exp $ */ 2/* $NetBSD: t_chroot.c,v 1.2 2017/01/10 22:36:29 christos Exp $ */
3 3
4/*- 4/*-
@@ -310,12 +310,12 @@ ATF_TP_ADD_TCS(tp)
310 ATF_TP_ADD_TC(tp, chroot_basic); 310 ATF_TP_ADD_TC(tp, chroot_basic);
311 ATF_TP_ADD_TC(tp, chroot_err); 311 ATF_TP_ADD_TC(tp, chroot_err);
312 ATF_TP_ADD_TC(tp, chroot_perm); 312 ATF_TP_ADD_TC(tp, chroot_perm);
313/* 313#ifndef __OpenBSD__
314 * Not available on OpenBSD 314 /* fchroot(2) not available */
315 * ATF_TP_ADD_TC(tp, fchroot_basic); 315 ATF_TP_ADD_TC(tp, fchroot_basic);
316 * ATF_TP_ADD_TC(tp, fchroot_err); 316 ATF_TP_ADD_TC(tp, fchroot_err);
317 * ATF_TP_ADD_TC(tp, fchroot_perm); 317 ATF_TP_ADD_TC(tp, fchroot_perm);
318 */ 318#endif
319 319
320 return atf_no_error(); 320 return atf_no_error();
321} 321}