From owner-svn-src-user@freebsd.org Sun Oct 4 08:36:29 2015 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96C9DA0DE63 for ; Sun, 4 Oct 2015 08:36:29 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8799F14DF; Sun, 4 Oct 2015 08:36:29 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t948aTSF005589; Sun, 4 Oct 2015 08:36:29 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t948aTLZ005588; Sun, 4 Oct 2015 08:36:29 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510040836.t948aTLZ005588@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 4 Oct 2015 08:36:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r288659 - user/ngie/more-tests/bin/ls/tests X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Oct 2015 08:36:29 -0000 Author: ngie Date: Sun Oct 4 08:36:28 2015 New Revision: 288659 URL: https://svnweb.freebsd.org/changeset/base/288659 Log: Add atf_test_case before all _head function definitions Modified: user/ngie/more-tests/bin/ls/tests/ls_tests.sh Modified: user/ngie/more-tests/bin/ls/tests/ls_tests.sh ============================================================================== --- user/ngie/more-tests/bin/ls/tests/ls_tests.sh Sun Oct 4 08:33:16 2015 (r288658) +++ user/ngie/more-tests/bin/ls/tests/ls_tests.sh Sun Oct 4 08:36:28 2015 (r288659) @@ -287,6 +287,7 @@ I_flag_voids_implied_A_flag_when_root_bo atf_check -o match:'\.g' -s exit:0 ls -A -I } +atf_test_case L_flag L_flag_head() { atf_set "descr" "Verify that -L prints out the symbolic link and conversely -P prints out the target for the symbolic link" @@ -299,6 +300,7 @@ L_flag_body() atf_check -e empty -o not-match:target1/target2 -s exit:0 ls -L } +atf_test_case S_flag S_flag_head() { atf_set "descr" "Verify that -S sorts by file size, then by filename lexicographically" @@ -378,6 +380,7 @@ a_flag_body() done } +atf_test_case d_flag d_flag_head() { atf_set "descr" "Verify that -d doesn't descend down directories" @@ -397,6 +400,7 @@ d_flag_body() done } +atf_test_case g_flag g_flag_head() { atf_set "descr" "Verify that -g does nothing (compatibility flag)" @@ -413,6 +417,7 @@ g_flag_body() done } +atf_test_case h_flag h_flag_head() { atf_set "descr" "Verify that -h prints out the humanized units for file sizes with ls -l" @@ -457,6 +462,7 @@ h_flag_body() done } +atf_test_case i_flag i_flag_head() { atf_set "descr" "Verify that -i prints out the inode for files" @@ -476,6 +482,7 @@ i_flag_body() done } +atf_test_case k_flag k_flag_head() { atf_set "descr" "Verify that -k prints out the size with a block size of 1kB" @@ -490,6 +497,7 @@ k_flag_body() done } +atf_test_case lcomma_flag lcomma_flag_head() { atf_set "descr" "Verify that -l, prints out the size with ',' delimiters" @@ -504,6 +512,7 @@ lcomma_flag_body() env LC_ALL=en_US.ISO8859-1 ls -l, i } +atf_test_case m_flag m_flag_head() { atf_set "descr" "Verify that the output from ls -m is comma-separated" @@ -522,6 +531,7 @@ m_flag_body() atf_check_equal "$(cat $output)" ",,, a,b , c, d, e" } +atf_test_case n_flag n_flag_head() { atf_set "descr" "Verify that the output from ls -n prints out numeric GIDs/UIDs instead of symbolic GIDs/UIDs" @@ -542,6 +552,7 @@ n_flag_body() } +atf_test_case o_flag o_flag_head() { atf_set "descr" "Verify that the output from ls -o prints out the chflag values or '-' if none are set" @@ -566,6 +577,7 @@ o_flag_body() -s exit:0 ls -lo b.file } +atf_test_case p_flag p_flag_head() { atf_set "descr" "Verify that the output from ls -p prints out '/' after directories" @@ -590,6 +602,7 @@ p_flag_body() done } +atf_test_case q_flag_and_w_flag q_flag_and_w_flag_head() { atf_set "descr" "Verify that the output from ls -q prints out '?' for ESC and ls -w prints out the escape character" @@ -609,6 +622,7 @@ q_flag_and_w_flag_body() atf_check -e empty -o match:"$test_file" -s exit:0 ls -w "$test_file" } +atf_test_case r_flag r_flag_head() { atf_set "descr" "Verify that the output from ls -r sorts the same way as reverse sorting with sort(1)" @@ -632,6 +646,7 @@ r_flag_body() atf_check_equal "$(cat $WITH_r)" "$(cat $WITH_sort)" } +atf_test_case s_flag s_flag_head() { atf_set "descr" "Verify that the output from ls -s matches the output from stat(1)" @@ -646,6 +661,7 @@ s_flag_body() done } +atf_test_case t_flag t_flag_head() { atf_set "descr" "Verify that the output from ls -t sorts by modification time" @@ -670,6 +686,7 @@ t_flag_body() atf_check -e empty -o match:'a\.file.*b\.file' -s exit:0 ls -Ct } +atf_test_case u_flag u_flag_head() { atf_set "descr" "Verify that the output from ls -u sorts by last access" @@ -696,6 +713,7 @@ u_flag_body() atf_check -e empty -o match:'a\.file.*b\.file' -s exit:0 ls -Cu } +atf_test_case x_flag x_flag_head() { atf_set "descr" "Verify that the output from ls -x is multi-column, sorted across" @@ -718,6 +736,7 @@ x_flag_body() egrep "i[[:space:]]+j[[:space:]]+klmn[[:space:]]+opqr[[:space:]]+stuv" $WITH_x } +atf_test_case y_flag y_flag_head() { atf_set "descr" "Verify that the output from ls -y sorts the same way as sort(1)" @@ -741,6 +760,7 @@ y_flag_body() atf_check_equal "$(cat $WITH_sort)" "$(cat $WITH_y)" } +atf_test_case 1_flag 1_flag_head() { atf_set "descr" "Verify that -1 prints out one item per line"