Fix line coverage script 95/216095/1
authorsooyeon.kim <sooyeon.kim@samsung.com>
Mon, 21 Oct 2019 05:21:24 +0000 (14:21 +0900)
committersooyeon.kim <sooyeon.kim@samsung.com>
Mon, 21 Oct 2019 05:21:45 +0000 (14:21 +0900)
Change-Id: I11f58a2a75172bec48d5e027c5ff32445d2c829f
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
packaging/stt.spec

index 997054e..7afaacf 100644 (file)
@@ -120,6 +120,17 @@ make %{?jobs:-j%jobs}
 
 %if 0%{?gcov:1}
 mkdir -p gcov-obj
+find . -name 'stt-engine-parser.c.gcno' -exec rm {} \;
+find . -name '*_client.c.gcno' -exec rm {} \;
+find . -name '*_config_mgr.c.gcno' -exec rm {} \;
+find . -name '*_config_parser.c.gcno' -exec rm {} \;
+find . -name '*_dbus.c.gcno' -exec rm {} \;
+find . -name '*_engine.c.gcno' -exec rm {} \;
+find . -name '*_file.c.gcno' -exec rm {} \;
+find . -name '*_network.c.gcno' -exec rm {} \;
+find . -name '*_setting.c.gcno' -exec rm {} \;
+find . -name 'sttd_*.gcno' -exec rm {} \;
+find . -name 'stte.c.gcno' -exec rm {} \;
 find . -name '*.gcno' -exec cp '{}' gcov-obj ';'
 %endif