Rev 10183 |
    Blame |
    Compare with Previous |
    Last modification |
    View Log
    | RSS feed
  
  
#! /bin/sh
 
FILE="gcovout/index.html"
 
wimstest/test.sh
 
lcov --capture --directory src --output-file coverage.info
 
genhtml coverage.info --output-directory gcovout
 
 
 
test=`xdg-open 2>/dev/null`
 
if [ "$test" ]; then
 
  xdg-open $FILE ;
 
  exit
 
fi
 
 
 
test=`open 2>/dev/null`
 
if [ !"$test" ]; then
 
  open $FILE;
 
  exit
 
fi