Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 353f395c8ca7c7f6669a6b812faf6d89a78c51e2)
+++ Jenkinsfile	(revision f43a2005ea7c50cf156174a4ef6c796daf0fc3fa)
@@ -17,9 +17,22 @@
 		sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure > /dev/null'
 		sh 'make -j 8'
-		email("SUCCESS", false)
 
 	//something happen, this build is a failure
 	} catch (Exception e) {
-		email("FAILURE", true)
+		email("COMPILATION FAILURE", true)
+		throw e;
+	}
+}
+
+stage 'Test'
+node ('master'){
+	try {
+		dir 'src/example'
+		sh './runTests.sh'
+		dir '../..'
+		email("SUCCESS", false)
+	//something happen, this build is a failure
+	} catch (Exception e) {
+		email("TEST FAILURE", true)
 		throw e;
 	}
