Hi I am running a maven project and mvn test fail when it runs in a given sub-module. It only fails on my OSX laptop, not on our Travis environment. (The output at the end of the message)
If I run mvn test without jacoco. Everything is ok. Anyone has a hint ? My pom.xml: https://github.com/btrplace/scheduler/blob/master/pom.xml My setup: ``` mvn --version Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T17:41:47+01:00) Maven home: /Users/fhermeni/Library/apache-maven-3.3.9 Java version: 1.8.0_66, vendor: Oracle Corporation Java home: /Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre Default locale: fr_FR, platform encoding: UTF-8 OS name: "mac os x", version: "10.11.1", arch: "x86_64", family: "mac" ``` The error message: ``` # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00000001065cdeb8, pid=6779, tid=17411 # # JRE version: Java(TM) SE Runtime Environment (8.0_66-b17) (build 1.8.0_66-b17) # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.66-b17 mixed mode bsd-amd64 compressed oops) # Problematic frame: # V [libjvm.dylib+0x3cdeb8] PhaseIdealLoop::idom_no_update(Node*) const+0x12 # # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again # # An error report file with more information is saved as: # /Users/fhermeni/Documents/Research/Projects/BtrPlace/Code/scheduler/choco/hs_err_pid6779.log [thread 5891 also had an error] # # Compiler replay data is saved as: # /Users/fhermeni/Documents/Research/Projects/BtrPlace/Code/scheduler/choco/replay_pid6779.log # # If you would like to submit a bug report, please visit: # http://bugreport.java.com/bugreport/crash.jsp # /bin/sh: line 1: 6779 Abort trap: 6 /Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/bin/java -javaagent:/Users/fhermeni/.m2/repository/org/jacoco/org.jacoco.agent/0.7.6.201602180812/org.jacoco.agent-0.7.6.201602180812-runtime.jar=destfile=/Users/fhermeni/Documents/Research/Projects/BtrPlace/Code/scheduler/choco/target/jacoco.exec -jar /Users/fhermeni/Documents/Research/Projects/BtrPlace/Code/scheduler/choco/target/surefire/surefirebooter8629494164943700960.jar /Users/fhermeni/Documents/Research/Projects/BtrPlace/Code/scheduler/choco/target/surefire/surefire3610797674310177082tmp /Users/fhermeni/Documents/Research/Projects/BtrPlace/Code/scheduler/choco/target/surefire/surefire_26882745415820677976tmp ``` -- You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/b25c2f2a-c1e7-4c04-a5d4-227d63800302%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
