From a9c47414b356742e3d7a758f18e90fee1a2c95fc Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Thu, 7 Mar 2019 10:09:33 +1100 Subject: [PATCH] remove dependancy on libxml --- bin/tests/system/statschannel/tests.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/tests/system/statschannel/tests.sh b/bin/tests/system/statschannel/tests.sh index 550a758ec6..2883b2419a 100644 --- a/bin/tests/system/statschannel/tests.sh +++ b/bin/tests/system/statschannel/tests.sh @@ -204,13 +204,15 @@ for i in 1 2 3 4 5; do if [ "$HAVEXMLSTATS" ]; then URL=http://10.53.0.2:${EXTRAPORT1}/xml/v3/server + filter_str='s#.*##g' else URL=http://10.53.0.2:${EXTRAPORT1}/json/v1/server + filter_str='s#"current-time.*",##g' fi $CURL -D regular.headers $URL 2>/dev/null | \ - sed -e "s#.*##g" > regular.out + sed -e "$filter_str" > regular.out $CURL -D compressed.headers --compressed $URL 2>/dev/null | \ - sed -e "s#.*##g" > compressed.out + sed -e "$filter_str" > compressed.out diff regular.out compressed.out >/dev/null || ret=1 if [ $ret != 0 ]; then echo_i "failed on try $i, probably a timing issue, trying again"