TODO.md: updated. tests.py: add missing tests to TODO.
[rrq/fuse_xattrs.git] / README.md
index 62e83994a9134c4aab933c247ee5ae947e8929be..e2ee57e0589394dcd08f0c902434d022d14abbb5 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,3 +1,5 @@
+[![Build Status](https://travis-ci.org/fbarriga/fuse_xattrs.svg?branch=travis)](https://travis-ci.org/fbarriga/fuse_xattrs)
+
 ## Abstract
 
 This filesystem provides xattr support using sidecar files.
@@ -19,16 +21,25 @@ To unmount the filesystem:
     fusermount -u mountpoint
 
 
-## Installing
+## Building
 
 First you need to download FUSE 2.9 or later from
 http://github.com/libfuse/libfuse.
 
-    mkdir build
-    cd build
+    mkdir build && cd build
     cmake ..
     make
 
+## Code Coverage
+
+    mkdir build && cd build
+    cmake -DENABLE_CODECOVERAGE=1 -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_BUILD_TYPE=Debug ..
+    make
+    make fuse_xattrs_coverage
+
+## Installing
+
+    make install
 
 ## Links