svn commit: r366060 - head/bin/cp/tests

Kyle Evans kevans at FreeBSD.org
Wed Sep 23 03:02:48 UTC 2020


Author: kevans
Date: Wed Sep 23 03:02:45 2020
New Revision: 366060
URL: https://svnweb.freebsd.org/changeset/base/366060

Log:
  cp: tests: fix weird 20 insertion
  
  This slipped in at the last moment. =(

Modified:
  head/bin/cp/tests/cp_test.sh

Modified: head/bin/cp/tests/cp_test.sh
==============================================================================
--- head/bin/cp/tests/cp_test.sh	Wed Sep 23 03:01:14 2020	(r366059)
+++ head/bin/cp/tests/cp_test.sh	Wed Sep 23 03:02:45 2020	(r366060)
@@ -30,7 +30,8 @@ check_size()
 {
 	file=$1
 	sz=$2
-20atf_check -o inline:"$sz\n" stat -f '%z' $file
+
+	atf_check -o inline:"$sz\n" stat -f '%z' $file
 }
 
 atf_test_case basic


More information about the svn-src-head mailing list