From 4368b59a1da2db9ccb06bd03d635e174a0587572 Mon Sep 17 00:00:00 2001 From: cnrat Date: Thu, 18 Aug 2016 17:48:45 +0800 Subject: [PATCH] Fix FILE-6344 bug (#263) The result of mount command returns like /proc on /proc type proc (rw,hidepid=2) Witch means the regular expression should be '^/proc' not '^proc' or you can grep nothing. :P --- include/tests_filesystems | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tests_filesystems b/include/tests_filesystems index 2b9ef919..cc5dfc11 100644 --- a/include/tests_filesystems +++ b/include/tests_filesystems @@ -308,7 +308,7 @@ if [ ${SKIPTEST} -eq 0 ]; then # Proc should be mounted with 'hidepid=2' or 'hidepid=1' at least LogText "Test: check proc mount with incorrect mount options" - FIND=$(mount | ${EGREPBINARY} "^proc" | ${EGREPBINARY} -o "hidepid=[0-9]") + FIND=$(mount | ${EGREPBINARY} "^/proc" | ${EGREPBINARY} -o "hidepid=[0-9]") if [ "${FIND}" = "hidepid=2" ]; then Display --indent 2 --text "- Testing proc mount" --result "${STATUS_OK}" --color GREEN LogText "Result: proc mount mounted with hidepid=2"