We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8400115 commit d1ac9daCopy full SHA for d1ac9da
trunk/3rdparty/st-srs/auto/fast.sh
@@ -0,0 +1,21 @@
1
+#!/bin/bash
2
+
3
+IS_LINUX=yes
4
+uname -s|grep Darwin >/dev/null && IS_DARWIN=yes && IS_LINUX=no
5
+echo "IS_LINUX: $IS_LINUX, IS_DARWIN: $IS_DARWIN"
6
7
+echo "Clean gcda files"
8
+rm -f ./obj/*.gcda
9
10
+echo "Build and run utest"
11
+if [[ $IS_DARWIN == yes ]]; then
12
+ make darwin-debug-gcov && ./obj/st_utest
13
+else
14
+ make linux-debug-gcov && ./obj/st_utest
15
+fi
16
17
+echo "Generating coverage"
18
+mkdir -p coverage &&
19
+gcovr -r . -e LINUX -e DARWIN -e examples --html --html-details -o coverage/st.html &&
20
+echo "Coverage report at coverage/st.html" &&
21
+open coverage/st.html
0 commit comments