diff options
| author | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | 2017-08-10 02:19:03 +0200 |
|---|---|---|
| committer | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | 2017-09-16 10:40:26 +0200 |
| commit | c00124017a3963d76e3dcea55aba4fb0135ee285 (patch) | |
| tree | ea681c578cb8b52134c1f354c5b4853a2acd61c7 | |
| parent | f1e4ba13d1499407a72349b50052ae818c8d8553 (diff) | |
| download | sparse-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>
| -rwxr-xr-x | validation/test-suite | 4 |
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 |
