From ee77059638b479b9288b0cc66cacdb36cc7e50d8 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Fri, 14 Feb 2020 11:35:26 +0000 Subject: [PATCH] Attempt to format escape sequences correctly --- show-expected-fail-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/show-expected-fail-tests.sh b/show-expected-fail-tests.sh index cef817d8a..049a08aff 100755 --- a/show-expected-fail-tests.sh +++ b/show-expected-fail-tests.sh @@ -77,8 +77,8 @@ while read -r test_name; do done <<< "${passed_but_expected_fail}" # Trim test output strings -tests_to_add=$(echo $tests_to_add | xargs) -already_in_whitelist=$(echo $already_in_whitelist | xargs) +tests_to_add=$(echo -e $tests_to_add | xargs) +already_in_whitelist=$(echo -e $already_in_whitelist | xargs) # Format output with markdown for buildkite annotation rendering purposes if [ -n "${tests_to_add}" ] && [ -n "${already_in_whitelist}" ]; then