svn commit: r346515 - stable/11/usr.bin/procstat/tests

Enji Cooper ngie at FreeBSD.org
Mon Apr 22 03:19:41 UTC 2019


Author: ngie
Date: Mon Apr 22 03:19:40 2019
New Revision: 346515
URL: https://svnweb.freebsd.org/changeset/base/346515

Log:
  Comment out checks that are causing failures on ^/stable/11, post-r337133
  
  Some usr.bin/procstat code has not been MFCed to ^/stable/11 for command line
  handling, and unfortunately, r337133 (which was MFCed as r337542) relies on
  that support.
  
  Comment out the checks and add a pointer to the PR for code archaeology and
  to cause future potential parties to verify changes when backporting them.
  
  This is a direct commit to ^/stable/11
  
  PR:		237445
  Reviewed by:	markj
  Approved by:	emaste (mentor; implicit)
  Differential Revision: https://reviews.freebsd.org/D19998

Modified:
  stable/11/usr.bin/procstat/tests/procstat_test.sh

Modified: stable/11/usr.bin/procstat/tests/procstat_test.sh
==============================================================================
--- stable/11/usr.bin/procstat/tests/procstat_test.sh	Mon Apr 22 03:06:12 2019	(r346514)
+++ stable/11/usr.bin/procstat/tests/procstat_test.sh	Mon Apr 22 03:19:40 2019	(r346515)
@@ -138,8 +138,9 @@ kernel_stacks_head()
 }
 kernel_stacks_body()
 {
-	atf_check -o save:procstat.out procstat -a kstack
-	atf_check -o not-empty awk '{if ($3 == "procstat") print}' procstat.out
+	# Bug 237445: checks will fail because of missing MFCs on branch
+	#atf_check -o save:procstat.out procstat -a kstack
+	#atf_check -o not-empty awk '{if ($3 == "procstat") print}' procstat.out
 
 	atf_check -o save:procstat.out procstat -kka
 	atf_check -o not-empty awk '{if ($3 == "procstat") print}' procstat.out


More information about the svn-src-all mailing list