summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2013-05-29 12:39:47 +1000
committerDavid Gibson <david@gibson.dropbear.id.au>2013-05-29 12:40:00 +1000
commit1c76ec3c090f230fa8a45a5ef84bda600fc4d064 (patch)
treec3979766a9f93f05a02a900d3574aca2f4204ec9
parent8ec013ae635f36f0a51a21f8b38e3a2669e3b74e (diff)
downloaddtc-1c76ec3c090f230fa8a45a5ef84bda600fc4d064.tar.gz
Use shorten_echo for wrap_tests
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 <david@gibson.dropbear.id.au>
-rwxr-xr-xtests/run_tests.sh2
1 files changed, 1 insertions, 1 deletions
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 "$@"
}