Module Name: src Committed By: gutteridge Date: Fri Jan 24 22:26:41 UTC 2025
Modified Files: src/tests/usr.bin/cut: t_cut.sh Log Message: t_cut.sh: fix argument ordering of new test case, whoops (PR bin/59029) To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/tests/usr.bin/cut/t_cut.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/usr.bin/cut/t_cut.sh diff -u src/tests/usr.bin/cut/t_cut.sh:1.3 src/tests/usr.bin/cut/t_cut.sh:1.4 --- src/tests/usr.bin/cut/t_cut.sh:1.3 Fri Jan 24 22:23:38 2025 +++ src/tests/usr.bin/cut/t_cut.sh Fri Jan 24 22:26:41 2025 @@ -1,4 +1,4 @@ -# $NetBSD: t_cut.sh,v 1.3 2025/01/24 22:23:38 gutteridge Exp $ +# $NetBSD: t_cut.sh,v 1.4 2025/01/24 22:26:41 gutteridge Exp $ # # Copyright (c) 2008, 2009 The NetBSD Foundation, Inc. # All rights reserved. @@ -131,7 +131,7 @@ nflag_body() atf_expect_fail "PR bin/59029" atf_check -o inline:"bar\nBar\nBAr\nBAR\n" \ - cut -b -n 6,7,8 "$(atf_get_srcdir)/d_utf8.in" + cut -b 6,7,8 -n "$(atf_get_srcdir)/d_utf8.in" } atf_init_test_cases()