svn commit: r278767 - head/usr.sbin/pw/tests

Brad Davis brd at FreeBSD.org
Sat Feb 14 18:22:33 UTC 2015


Author: brd (doc committer)
Date: Sat Feb 14 18:22:31 2015
New Revision: 278767
URL: https://svnweb.freebsd.org/changeset/base/278767

Log:
  Remove an extra curly bracket that was causing intermittent failures.
  
  PR:		197612
  Submitted by:	Robert O'Niel <oneil.rs at gmail.com>
  Approved by:	will

Modified:
  head/usr.sbin/pw/tests/pw_usernext.sh

Modified: head/usr.sbin/pw/tests/pw_usernext.sh
==============================================================================
--- head/usr.sbin/pw/tests/pw_usernext.sh	Sat Feb 14 18:15:14 2015	(r278766)
+++ head/usr.sbin/pw/tests/pw_usernext.sh	Sat Feb 14 18:22:31 2015	(r278767)
@@ -32,7 +32,7 @@ usernext_assigned_group_body() {
 		atf_check -s exit:0 ${PW} useradd -n test$var0 -g 0
 		var0=`expr $var0 + 1`
 	done
-	atf_check -s exit:0 -o match:"100${LIMIT}:1001}" \
+	atf_check -s exit:0 -o match:"100${LIMIT}:1001" \
 		${PW} usernext
 }
 


More information about the svn-src-all mailing list