]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[trac1071] remove intermediate file from a couple of tests
authorStephen Morris <stephen@isc.org>
Mon, 4 Jul 2011 13:52:06 +0000 (14:52 +0100)
committerStephen Morris <stephen@isc.org>
Mon, 4 Jul 2011 13:52:06 +0000 (14:52 +0100)
src/lib/log/tests/init_logger_test.sh.in

index 8ca0e0b6fdb9b037dfb6a221bccb50898fcda0f7..d26ca5ddf552845c6a866d36e625836fab84de86 100755 (executable)
@@ -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"