From 328fd1f00371298ccfc201dea032a533e200bb2b Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Thu, 17 Jan 2013 02:32:13 +0000 Subject: [PATCH] test: fix to eliminate error message "tr: warning: an unescaped backslash at end of string is not portable" --- test/functions.source | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functions.source b/test/functions.source index 937da607..65142411 100644 --- a/test/functions.source +++ b/test/functions.source @@ -72,7 +72,7 @@ copyTestFiles() # result analysis reportTest() { - cat $results | tr \\ / > ${results}-new + cat $results | tr '\\' '/' > ${results}-new mv -f ${results}-new $results if [ ! -z `which dos2unix` ]; then unix2dos $results >/dev/null 2>&1