aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDezhu Zhang <dezhux.zhang@intel.com>2019-07-25 13:32:48 +0800
committerTony Luck <tony.luck@intel.com>2019-07-29 14:56:04 -0700
commit708bfffaf2dc3c5c8203c756d1c52393b97bde4a (patch)
treec785c4ad22ba1955eba5073e69b3876012941f5e
parent08ee5962fadfad11a256edcd92d7a71d55db6890 (diff)
downloadmce-test-708bfffaf2dc3c5c8203c756d1c52393b97bde4a.tar.gz
mce-test: Fix typo issue in run_hugepage_overcommit.sh
Missing "echo" in failure path Signed-off-by: Dezhu Zhang <dezhux.zhang@intel.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
-rwxr-xr-xcases/function/hwpoison/run_hugepage_overcommit.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/cases/function/hwpoison/run_hugepage_overcommit.sh b/cases/function/hwpoison/run_hugepage_overcommit.sh
index f01c219..18fa59a 100755
--- a/cases/function/hwpoison/run_hugepage_overcommit.sh
+++ b/cases/function/hwpoison/run_hugepage_overcommit.sh
@@ -20,7 +20,7 @@ exec_testcase() {
if [ $? -eq 0 ] ; then
echo "$command returned with success."
else
- "FAIL: migration failed."
+ echo "FAIL: migration failed."
failed_testcase=$[failed_testcase+1]
fi
}