Explorar el Código

test_build_system.sh: Produce less output to avoid CI log limit

Angus Gratton hace 9 años
padre
commit
d8a60daece
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  1. 4 2
      make/test_build_system.sh

+ 4 - 2
make/test_build_system.sh

@@ -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"