From: Ben Pye Date: Wed, 26 Aug 2015 23:06:36 +0000 (+0100) Subject: Use printf instead of non standard -e X-Git-Tag: accepted/tizen/base/20180629.140029~6462^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85c61d62f49e7ac246a125c66d25581b6f8afb8d;p=platform%2Fupstream%2Fcoreclr.git Use printf instead of non standard -e --- diff --git a/src/pal/tests/palsuite/runpaltests.sh b/src/pal/tests/palsuite/runpaltests.sh index da7fb2a..377aa00 100755 --- a/src/pal/tests/palsuite/runpaltests.sh +++ b/src/pal/tests/palsuite/runpaltests.sh @@ -137,8 +137,8 @@ XUNIT_PREFIX+="\n" XUNIT_PREFIX+="\n" XUNIT_PREFIX+="" -echo -e $XUNIT_SUFFIX >> $PAL_XUNIT_TEST_LIST_TMP -echo -e $XUNIT_PREFIX | cat - $PAL_XUNIT_TEST_LIST_TMP > $PAL_XUNIT_TEST_LIST +printf "$XUNIT_SUFFIX" >> $PAL_XUNIT_TEST_LIST_TMP +printf "$XUNIT_PREFIX" | cat - $PAL_XUNIT_TEST_LIST_TMP > $PAL_XUNIT_TEST_LIST # If there were tests failures then print the list of failed tests if [ $NUMBER_OF_FAILED_TESTS -gt "0" ]; then