From a2e1561fa43a863f6e1b0010edd91336cb02c3e3 Mon Sep 17 00:00:00 2001 From: jruoho Date: Sun, 18 Mar 2012 19:21:53 +0000 Subject: [PATCH] Add a better check for the previous. --- tests/usr.bin/find/t_find.sh | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/tests/usr.bin/find/t_find.sh b/tests/usr.bin/find/t_find.sh index 915302bfddc5..e8b39974ba60 100644 --- a/tests/usr.bin/find/t_find.sh +++ b/tests/usr.bin/find/t_find.sh @@ -1,4 +1,4 @@ -# $NetBSD: t_find.sh,v 1.4 2012/03/18 19:11:30 jruoho Exp $ +# $NetBSD: t_find.sh,v 1.5 2012/03/18 19:21:53 jruoho Exp $ # # Copyright (c) 2012 The NetBSD Foundation, Inc. # All rights reserved. @@ -30,13 +30,20 @@ atf_test_case emptyperm emptyperm_head() { - atf_set "descr" "Test that 'find -empty' returns true (PR bin/44179)" + atf_set "descr" "Test that 'find -empty' does not error out " \ + "when directory access is denied (PR bin/44179)" atf_set "require.user" "unprivileged" } emptyperm_body() { - # The test assumes that $dir is drwxrwx---. + # The case assumes that at least some directories + # in /var are unavailable for the user '_tests'. + # + atf_check -s exit:1 -o save:output.file \ + -e not-empty -x "find /var -empty -type d" + + # The case assumes that $dir is drwxrwx---. # dir="/var/quotas"