]> granicus.if.org Git - esp-idf/commitdiff
test_build_system.sh: Produce less output to avoid CI log limit
authorAngus Gratton <angus@espressif.com>
Wed, 1 Feb 2017 07:04:07 +0000 (18:04 +1100)
committerAngus Gratton <angus@espressif.com>
Wed, 8 Feb 2017 21:44:05 +0000 (08:44 +1100)
make/test_build_system.sh

index 4e72f457ba0f13aab12300ada8c921c0ed65f516..cc7cc9e12821cdfcbaba6d46f4d8bf65f8ce7d5e 100755 (executable)
@@ -29,7 +29,9 @@
 [ -z ${TMP} ] && TMP="/tmp"
 # override ESP_IDF_TEMPLATE_GIT to point to a local dir if you're testing and want fast iterations
 [ -z ${ESP_IDF_TEMPLATE_GIT} ] && ESP_IDF_TEMPLATE_GIT=https://github.com/espressif/esp-idf-template.git
-export V=1
+
+# uncomment next line to produce a lot more debug output
+#export V=1
 
 function run_tests()
 {
@@ -133,7 +135,7 @@ function run_tests()
     # make a copy of esp-idf and CRLFify it
     CRLF_ESPIDF=${TESTDIR}/esp-idf-crlf
     mkdir -p ${CRLF_ESPIDF}
-    cp -rv ${IDF_PATH}/* ${CRLF_ESPIDF}
+    cp -r ${IDF_PATH}/* ${CRLF_ESPIDF}
     # don't CRLFify executable files, as Linux will fail to execute them
     find ${CRLF_ESPIDF} -type f ! -perm 755 -exec unix2dos {} \;
     make IDF_PATH=${CRLF_ESPIDF} || failure "Failed to build with CRLFs in source"