[CRIU] [PATCH 5/7] test/zdtm.sh: simplify showing list of tests
Kir Kolyshkin
kir at openvz.org
Mon Feb 6 11:57:27 EST 2012
echo normalizes spaces, tr converts them into newlines
Signed-off-by: Kir Kolyshkin <kir at openvz.org>
---
test/zdtm.sh | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/test/zdtm.sh b/test/zdtm.sh
index 9575fbf..3b23073 100644
--- a/test/zdtm.sh
+++ b/test/zdtm.sh
@@ -107,9 +107,7 @@ if [ $# -eq 0 ]; then
run_test $t -n ipc || case_error $t
done
elif [ "$1" == "-l" ]; then
- echo $TEST_LIST | sed -e "s#$ZP/##g" -e 's/ /\n/g'
- echo $UTS_TEST_LIST | sed -e "s#$ZP/##g" -e 's/ /\n/g'
- echo $IPC_TEST_LIST | sed -e "s#$ZP/##g" -e 's/ /\n/g'
+ echo $TEST_LIST $UTS_TEST_LIST $IPC_TEST_LIST | tr ' ' '\n'
else
if echo $UTS_TEST_LIST | fgrep -qw $1; then
run_test $1 -n uts || case_error $1
--
1.7.5.4
More information about the CRIU
mailing list