We have certain tests which generate extremely long command lines, which are shortened in the testsuite output with the 'shorten_echo' function. Currently that is used in run_fdtput_test and run_wrap_test, this patch uses it for run_wrap_test as well, allowing more general tests with long command lines.
Signed-off-by: David Gibson <[email protected]> --- tests/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run_tests.sh b/tests/run_tests.sh index b013761..9c87369 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -80,7 +80,7 @@ wrap_test () { } run_wrap_test () { - echo -n "$@: " + shorten_echo "$@: " base_run_test wrap_test "$@" } -- 1.7.10.4 _______________________________________________ devicetree-discuss mailing list [email protected] https://lists.ozlabs.org/listinfo/devicetree-discuss
