Skip to content

Commit d1ac9da

Browse files
committed
ST: Support fast utest and coverage
1 parent 8400115 commit d1ac9da

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

trunk/3rdparty/st-srs/auto/fast.sh

+21
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)