Commit 95e5a911 authored by Zhao Gongyi's avatar Zhao Gongyi Committed by Shuah Khan

selftests/memory-hotplug: Adjust log info for maintainability

Redirect misleading error message to /dev/null for
offline_memory_expect_success(), And, add an output
for online->offline test.
Signed-off-by: default avatarZhao Gongyi <zhaogongyi@huawei.com>
Acked-by: default avatarDavid Hildenbrand <david@redhat.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent 3e77a49a
...@@ -207,8 +207,11 @@ echo -e "\t trying to offline $target out of $hotpluggable_num memory block(s):" ...@@ -207,8 +207,11 @@ echo -e "\t trying to offline $target out of $hotpluggable_num memory block(s):"
for memory in `hotpluggable_online_memory`; do for memory in `hotpluggable_online_memory`; do
if [ "$target" -gt 0 ]; then if [ "$target" -gt 0 ]; then
echo "online->offline memory$memory" echo "online->offline memory$memory"
if offline_memory_expect_success $memory; then if offline_memory_expect_success $memory &>/dev/null; then
target=$(($target - 1)) target=$(($target - 1))
echo "-> Success"
else
echo "-> Failure"
fi fi
fi fi
done done
...@@ -267,7 +270,7 @@ prerequisite_extra ...@@ -267,7 +270,7 @@ prerequisite_extra
echo 0 > $NOTIFIER_ERR_INJECT_DIR/actions/MEM_GOING_OFFLINE/error echo 0 > $NOTIFIER_ERR_INJECT_DIR/actions/MEM_GOING_OFFLINE/error
for memory in `hotpluggable_online_memory`; do for memory in `hotpluggable_online_memory`; do
if [ $((RANDOM % 100)) -lt $ratio ]; then if [ $((RANDOM % 100)) -lt $ratio ]; then
offline_memory_expect_success $memory offline_memory_expect_success $memory &>/dev/null
fi fi
done done
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment