]> granicus.if.org Git - libevent/commit
Fix test.sh on shells without echo -n
authorNick Mathewson <nickm@torproject.org>
Tue, 12 Jan 2010 20:58:36 +0000 (15:58 -0500)
committerNick Mathewson <nickm@torproject.org>
Tue, 12 Jan 2010 20:58:36 +0000 (15:58 -0500)
commit94131e92b827ab2b46a4cb7ded52cdc143f807a8
treefe7cfad9bd3c4588094df13733c06379836435a3
parentb9f43b231fe738789110f99d7045f2535986e997
Fix test.sh on shells without echo -n

Some systems have a version of /bin/sh whose builtin echo doesn't
support the -n option used in test/test.sh.  /bin/echo, however,
usually does.  This patch makes us use /bin/echo for echo -n whenever
it is present.

Also, our use of echo -n really only made sense when suppressing all
test output.  Since test output isn't suppressed when logging to a
file, this pach makes us stop using echo -n when logging to a file.
test/test.sh