aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/test-suite
diff options
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2017-08-10 02:19:03 +0200
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2017-09-16 10:40:26 +0200
commitc00124017a3963d76e3dcea55aba4fb0135ee285 (patch)
treeea681c578cb8b52134c1f354c5b4853a2acd61c7 /validation/test-suite
parentf1e4ba13d1499407a72349b50052ae818c8d8553 (diff)
downloadsparse-dev-c00124017a3963d76e3dcea55aba4fb0135ee285.tar.gz
testsuite: 'echo -n' may not be interpreted as '-n'
POSIX tell that the interpretation of the '-n' is implementation independent. So avoid it. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Diffstat (limited to 'validation/test-suite')
-rwxr-xr-xvalidation/test-suite4
1 files changed, 2 insertions, 2 deletions
diff --git a/validation/test-suite b/validation/test-suite
index cf151a36..53cd3019 100755
--- a/validation/test-suite
+++ b/validation/test-suite
@@ -303,8 +303,8 @@ do_test_suite()
# prints some numbers
tests_nr=$(($ok_tests + $ko_tests))
- echo -n "Out of $tests_nr tests, $ok_tests passed, $ko_tests failed"
- echo " ($known_ko_tests of them are known to fail)"
+ echo "Out of $tests_nr tests, $ok_tests passed, $ko_tests failed" \
+ " ($known_ko_tests of them are known to fail)"
if [ "$unhandled_tests" -ne "0" ]; then
echo "$unhandled_tests tests could not be handled by $prog_name"
fi