From: Stephen Morris Date: Mon, 4 Jul 2011 13:52:06 +0000 (+0100) Subject: [trac1071] remove intermediate file from a couple of tests X-Git-Tag: perftcpdns_before_epoll~231^2~22^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=95e0a157b2ae5a4027c06b7bb1aec04f9eb883fd;p=thirdparty%2Fkea.git [trac1071] remove intermediate file from a couple of tests --- diff --git a/src/lib/log/tests/init_logger_test.sh.in b/src/lib/log/tests/init_logger_test.sh.in index 8ca0e0b6fd..d26ca5ddf5 100755 --- a/src/lib/log/tests/init_logger_test.sh.in +++ b/src/lib/log/tests/init_logger_test.sh.in @@ -44,9 +44,8 @@ WARN [bind10.log] LOG_BAD_STREAM bad log console output stream: warn ERROR [bind10.log] LOG_DUPLICATE_MESSAGE_ID duplicate message ID (error) in compiled code FATAL [bind10.log] LOG_NO_MESSAGE_ID line fatal: message definition line found without a message ID . -rm -f $destfile -B10_LOGGER_SEVERITY=DEBUG B10_LOGGER_DBGLEVEL=99 ./init_logger_test 2> $destfile -cut -d' ' -f3- $destfile | diff $tempfile - +B10_LOGGER_SEVERITY=DEBUG B10_LOGGER_DBGLEVEL=99 ./init_logger_test 2>&1 | \ + cut -d' ' -f3- | diff $tempfile - passfail $? echo -n " - severity=DEBUG, dbglevel=50: " @@ -58,9 +57,8 @@ WARN [bind10.log] LOG_BAD_STREAM bad log console output stream: warn ERROR [bind10.log] LOG_DUPLICATE_MESSAGE_ID duplicate message ID (error) in compiled code FATAL [bind10.log] LOG_NO_MESSAGE_ID line fatal: message definition line found without a message ID . -rm -f $destfile -B10_LOGGER_SEVERITY=DEBUG B10_LOGGER_DBGLEVEL=50 ./init_logger_test 2> $destfile -cut -d' ' -f3- $destfile | diff $tempfile - +B10_LOGGER_SEVERITY=DEBUG B10_LOGGER_DBGLEVEL=50 ./init_logger_test 2>&1 | \ + cut -d' ' -f3- | diff $tempfile - passfail $? echo -n " - severity=WARN: " @@ -69,9 +67,8 @@ WARN [bind10.log] LOG_BAD_STREAM bad log console output stream: warn ERROR [bind10.log] LOG_DUPLICATE_MESSAGE_ID duplicate message ID (error) in compiled code FATAL [bind10.log] LOG_NO_MESSAGE_ID line fatal: message definition line found without a message ID . -rm -f $destfile -B10_LOGGER_SEVERITY=WARN ./init_logger_test 2> $destfile -cut -d' ' -f3- $destfile | diff $tempfile - +B10_LOGGER_SEVERITY=WARN ./init_logger_test 2>&1 | \ + cut -d' ' -f3- | diff $tempfile - passfail $? echo "2. Checking that B10_LOGGER_DESTINATION works"