Author: ngie
Date: Wed Jul 19 16:23:02 2017
New Revision: 321211
URL: https://svnweb.freebsd.org/changeset/base/321211

Log:
  Clean up :coredump_phnum
  
  - Use "atf_check -x 'cmd1 | cmd2'" instead of "cmd1 | atf_check cmd2". The
    two forms are idiomatically similar, but subtly different in the sense of
    what program invokes the other, and there could be unwanted side effects
    of the latter idiom dealing with forking, pipes, etc.
  - Remove chmod and instead source coredump_phnum_restore_state.sh directly.
    This avoids the need to check the result of the chmod call.
  - Fix indentation in an if-block (4 column space indentation -> hard tab).

Modified:
  head/tests/sys/kern/coredump_phnum_test.sh

Modified: head/tests/sys/kern/coredump_phnum_test.sh
==============================================================================
--- head/tests/sys/kern/coredump_phnum_test.sh  Wed Jul 19 16:08:08 2017        
(r321210)
+++ head/tests/sys/kern/coredump_phnum_test.sh  Wed Jul 19 16:23:02 2017        
(r321211)
@@ -46,7 +46,6 @@ coredump_phnum_body()
        sysctl kern.coredump=$(sysctl -n kern.coredump)
        sysctl kern.corefile='$(sysctl -n kern.corefile)'
 EOF
-       chmod +x coredump_phnum_restore_state.sh
 
        ulimit -c unlimited
        sysctl kern.coredump=1
@@ -56,30 +55,27 @@ EOF
 
        # Check that core looks good
        if [ ! -f coredump_phnum_helper.core ]; then
-           atf_fail "Helper program did not dump core"
+               atf_fail "Helper program did not dump core"
        fi
 
        # These magic numbers don't have any real significance.  They are just
        # the result of running the helper program and dumping core.  The only
        # important bit is that they're larger than 65535 (UINT16_MAX).
-       readelf -h coredump_phnum_helper.core | \
-           atf_check -o "match:65535 \(66[0-9]{3}\)" \
-           grep "Number of program headers:"
-       readelf -l coredump_phnum_helper.core | \
-           atf_check -o "match:There are 66[0-9]{3} program headers" \
-           grep -1 "program headers"
-       readelf -S coredump_phnum_helper.core | \
-           atf_check -o "match: 0000000000000001 .* 66[0-9]{3} " \
-           grep -A1 "^  \[ 0\] "
+       atf_check -o "match:65535 \(66[0-9]{3}\)" \
+           -x 'readelf -h coredump_phnum_helper.core | grep "Number of program 
headers:"'
+       atf_check -o "match:There are 66[0-9]{3} program headers" \
+           -x 'readelf -l coredump_phnum_helper.core | grep -1 "program 
headers"'
+       atf_check -o "match: 0000000000000001 .* 66[0-9]{3} " \
+           -x 'readelf -S coredump_phnum_helper.core | grep -A1 "^  \[ 0\] "'
 
-       procstat -v coredump_phnum_helper.core | \
-           atf_check -o "match:66[0-9]{3}" wc -l
+       atf_check -o "match:66[0-9]{3}" \
+           -x 'procstat -v coredump_phnum_helper.core | wc -l'
 }
 coredump_phnum_cleanup()
 {
        rm -f coredump_phnum_helper.core
-       if [ -x coredump_phnum_restore_state.sh ]; then
-               ./coredump_phnum_restore_state.sh
+       if [ -f coredump_phnum_restore_state.sh ]; then
+               . ./coredump_phnum_restore_state.sh
        fi
        rm -f coredump_phnum_restore_state.sh
 }
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to