(FlexNode) Fixed Visual Studio Compilation
[platform/core/uifw/dali-toolkit.git] / automated-tests / coverage.sh
index c5fbed7..96c3740 100755 (executable)
@@ -1,6 +1,22 @@
 #!/bin/bash
 
-( cd ../build/tizen ; make cov_data )
+opt_genhtml=true
+if [ $1 == -n ] ; then
+  opt_genhtml=false
+fi
+
+BUILD_DIR_NAME=tizen
+function MakeCovData()
+{
+    (  cd ../build/$BUILD_DIR_NAME ; make cov_data )
+}
+
+MakeCovData
+if [[ $? -ne 0 ]]
+then
+    BUILD_DIR_NAME=tizen-cmake
+    MakeCovData
+fi
 
 # From lcov version 1.10 onwards, branch coverage is off by default and earlier versions do not support the rc option
 LCOV_OPTS=`if [ \`printf "\\\`lcov --version | cut -d' ' -f4\\\`\n1.10\n" | sort -V | head -n 1\` = 1.10 ] ; then echo "--rc lcov_branch_coverage=1" ; fi`
@@ -23,8 +39,9 @@ for i in `find . -name "*.dir"` ; do
 done
 
 (
-    cd .. ;
-    genhtml $LCOV_OPTS -o build/tizen/doc/coverage `find . -name dali.info`
+    if [ $opt_genhtml == true ] ; then
+        cd .. ;
+        genhtml $LCOV_OPTS -o build/$BUILD_DIR_NAME/doc/coverage `find . -name dali.info`
+        echo "Coverage output: ../build/$BUILD_DIR_NAME/doc/coverage/index.html"
+    fi
 )
-
-echo "Coverage output: ../build/tizen/doc/coverage/index.html"