summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRALOVICH, Kristof <tade60@freemail.hu>2014-11-07 12:11:38 +0100
committerRALOVICH, Kristof <tade60@freemail.hu>2014-11-07 12:11:38 +0100
commit734823bddb75757edd3b8aeab1a04a1b33957497 (patch)
treec1d595481cca210461f4f60fc8e5a4c0b9a6922e
parentcd66fc909a237256ef0d4061ef8429adac6cd8fe (diff)
docs: add todoupstream
-rw-r--r--docs/maintainer.txt1
-rwxr-xr-xscripts/do_cov.sh11
2 files changed, 9 insertions, 3 deletions
diff --git a/docs/maintainer.txt b/docs/maintainer.txt
index 19c51cb..a534d1f 100644
--- a/docs/maintainer.txt
+++ b/docs/maintainer.txt
@@ -22,6 +22,7 @@
* It generally helps to keep the watch close (20-30 cm) to the USB2ANT dongle while communicating.
** TODO
+* when State=Busy broadcast is sent, maybe adjust timeout in waitForBursts??
* run fit2gpx after downloads finish
* capture ant agent log: for downloading all, for erasing, for uploading
* capture ant agent log: for firmware upload
diff --git a/scripts/do_cov.sh b/scripts/do_cov.sh
index 416aebf..155cf99 100755
--- a/scripts/do_cov.sh
+++ b/scripts/do_cov.sh
@@ -1,8 +1,13 @@
PATH=~/bin/cov/cov-analysis-linux64-7.5.0/bin:$PATH
-mkdir build-cov
-(cd build-cov && cmake ../src -DCMAKE_BUILD_TYPE=Debug -DUSE_BOOST_TEST=TRUE)
-(cd build-cov && cov-build --dir cov-int make -j 4)
+# mkdir build-cov
+# (cd build-cov && cmake ../src -DCMAKE_BUILD_TYPE=Debug -DUSE_BOOST_TEST=TRUE)
+# (cd build-cov && cov-build --dir cov-int make -j 9)
+
+COVERITY_SITE_CC=clang;clang++
+mkdir build-cov-clang
+(cd build-cov-clang && CXX=clang++ CC=clang cmake ../src -DCMAKE_BUILD_TYPE=Debug -DUSE_BOOST_TEST=TRUE)
+(cd build-cov-clang && cov-build --dir cov-int make -j 9)