aboutsummaryrefslogtreecommitdiff
path: root/jacoco-maven-plugin.test/it
diff options
context:
space:
mode:
authorMirko Friedenhagen <mfriedenhagen@gmail.com>2013-12-17 21:40:54 +0100
committerMirko Friedenhagen <mfriedenhagen@gmail.com>2013-12-17 21:40:54 +0100
commit40605f98c6ea94ba045f20ef450050a771d7d6b9 (patch)
tree314ad031402e6ce0dc7b431a13f236d98584ccf6 /jacoco-maven-plugin.test/it
parent06eb9f37748037d850c53aad949cb9172756fac5 (diff)
downloadjacoco-40605f98c6ea94ba045f20ef450050a771d7d6b9.tar.gz
Align skip conditions and messages and give reasons.
Diffstat (limited to 'jacoco-maven-plugin.test/it')
-rw-r--r--jacoco-maven-plugin.test/it/it-multi-module/verify.bsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/jacoco-maven-plugin.test/it/it-multi-module/verify.bsh b/jacoco-maven-plugin.test/it/it-multi-module/verify.bsh
index 519b4860..b70e1910 100644
--- a/jacoco-maven-plugin.test/it/it-multi-module/verify.bsh
+++ b/jacoco-maven-plugin.test/it/it-multi-module/verify.bsh
@@ -13,7 +13,7 @@ import java.io.*;
import org.codehaus.plexus.util.*;
String buildLog = FileUtils.fileRead( new File( basedir, "build.log" ) );
-if ( buildLog.indexOf( "Skipping JaCoCo execution due to missing classes directory." ) < 0 ) {
+if ( buildLog.indexOf( "Skipping JaCoCo execution due to missing classes directory:" ) < 0 ) {
throw new RuntimeException( "Execution should be skipped when target/classes does not exist." );
}