I have an ultra simple file in an empty directory:
public class Test { public static void main(String[] args) { System.out.println(\"Test\"); } }
As per this link http://vikashazrati.wordpress.com/2011/10/09/quicktip-verifyerror-with-jdk-7/
If I use
java -XX:-UseSplitVerifier emmarun -cp . Test
It works just fine
Apparently there are some changes to the bytecode in this version of java, and emma has not been updated to deal with it.