I am running the emma code coverage tool in my system by using the below command,
D:\DeadLockDetection\DDinDOS>java -XX:UseSplitVerifier -cp emma.jar emmarun -jar process-3-1.0.jar
The below error is comming on running the above command,
Missing +/- setting for VM option 'UseSplitVerifier'
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
How can i solve this problem.
Error is clear. You must use
java -XX:+UseSplitVerifier
orjava -XX:-UseSplitVerifier
Edit: UseSplitVerifier is boolean option for Oracle's JVM. The
-
or+
after the:
. Minus disabled the option, Plus enables the option.From the above link...