From: grev Date: Mon, 26 Nov 2007 13:44:54 +0000 (+0000) Subject: b=12649 X-Git-Tag: v1_7_0_51~466 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=517b8c46603e6fda48c329107f733135c8aa41cd b=12649 escape "|" on log message to protect interpretation by shell --- diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index 924fafc..6158781 100644 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -1197,6 +1197,7 @@ log() { MSG=${MSG//\(/\\\(} MSG=${MSG//\)/\\\)} MSG=${MSG//\;/\\\;} + MSG=${MSG//\|/\\\|} local NODES=$(nodes_list) for NODE in $NODES; do do_node $NODE $LCTL mark "$MSG" 2> /dev/null || true