From: Tim Kientzle Date: Mon, 10 Aug 2009 03:35:08 +0000 (-0400) Subject: Don't specify -q when running bsdcpio_test; it just prevents useful information from... X-Git-Tag: v2.8.0~434 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3dad5e24ca7f3f4d9457df399819f9ba7a44b587;p=thirdparty%2Flibarchive.git Don't specify -q when running bsdcpio_test; it just prevents useful information from getting into the log files. SVN-Revision: 1354 --- diff --git a/cpio/test/CMakeLists.txt b/cpio/test/CMakeLists.txt index 22bfd7ad6..1c0efc722 100644 --- a/cpio/test/CMakeLists.txt +++ b/cpio/test/CMakeLists.txt @@ -59,7 +59,7 @@ IF(ENABLE_CPIO AND ENABLE_TEST) IF(test MATCHES "^test_[^/]+[.]c$") STRING(REGEX REPLACE "^(test_[^/]+)[.]c$" "\\1" testname ${test}) ADD_TEST("bsdcpio_${testname}" bsdcpio_test - -q -v -p ${BSDCPIO} -r ${CMAKE_CURRENT_SOURCE_DIR} ${num}) + -v -p ${BSDCPIO} -r ${CMAKE_CURRENT_SOURCE_DIR} ${num}) MATH(EXPR num "${num} + 1") ENDIF(test MATCHES "^test_[^/]+[.]c$") ENDFOREACH(test)