svn commit: r321950 - head/bin/chmod/tests

Ngie Cooper ngie at FreeBSD.org
Wed Aug 2 21:20:51 UTC 2017


Author: ngie
Date: Wed Aug  2 21:20:49 2017
New Revision: 321950
URL: https://svnweb.freebsd.org/changeset/base/321950

Log:
  Always use first parameter passed to get_filesystem(..) instead of discarding it
  and using `.` instead.
  
  MFC after:	1 week
  MFC with:	r321949
  PR:	221189 [1], 221188 [2]

Modified:
  head/bin/chmod/tests/chmod_test.sh

Modified: head/bin/chmod/tests/chmod_test.sh
==============================================================================
--- head/bin/chmod/tests/chmod_test.sh	Wed Aug  2 21:18:54 2017	(r321949)
+++ head/bin/chmod/tests/chmod_test.sh	Wed Aug  2 21:20:49 2017	(r321950)
@@ -27,7 +27,9 @@
 
 get_filesystem()
 {
-	df -T . | tail -n 1 | cut -wf 2
+	local mountpoint=$1
+
+	df -T $mountpoint | tail -n 1 | cut -wf 2
 }
 
 atf_test_case RH_flag


More information about the svn-src-head mailing list