Date: Mon, 22 Apr 2019 03:19:40 +0000 (UTC) From: Enji Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r346515 - stable/11/usr.bin/procstat/tests Message-ID: <201904220319.x3M3JekB078736@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904220319.x3M3JekB078736>