aboutsummaryrefslogtreecommitdiff
path: root/testsuite/testing.sh
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-07-11 21:41:14 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-07-11 21:41:14 +0000
commitabe49fa54fbd4d13f8424532abced8c3bc9afd0c (patch)
tree46b91fabcbe3aab24dd2f926c915553f633c5ed9 /testsuite/testing.sh
parent94884eb4866815e63293a6261f974601ce95b1dd (diff)
downloadbusybox-abe49fa54fbd4d13f8424532abced8c3bc9afd0c.tar.gz
testsuite: uniformly use $ECHO with -n -e
Diffstat (limited to 'testsuite/testing.sh')
-rwxr-xr-xtestsuite/testing.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/testsuite/testing.sh b/testsuite/testing.sh
index ea59f317a..a57c4d68d 100755
--- a/testsuite/testing.sh
+++ b/testsuite/testing.sh
@@ -36,19 +36,6 @@
export FAILCOUNT=0
export SKIP=
-# Helper for helpers. Oh my...
-test x"$ECHO" != x"" || {
- ECHO="echo"
- test x"`echo -ne`" = x"" || {
- # Compile and use a replacement 'echo' which understands -e -n
- ECHO="$PWD/echo-ne"
- test -x "$ECHO" || {
- gcc -Os -o "$ECHO" ../scripts/echo.c || exit 1
- }
- }
- export ECHO
-}
-
# Helper functions
optional()