<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to FAQ</title><link>https://sourceforge.net/p/ecrashtesting/wiki/FAQ/</link><description>Recent changes to FAQ</description><atom:link href="https://sourceforge.net/p/ecrashtesting/wiki/FAQ/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 04 Dec 2013 18:55:41 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/ecrashtesting/wiki/FAQ/feed" rel="self" type="application/rss+xml"/><item><title>FAQ modified by Ana Filipa Nogueira</title><link>https://sourceforge.net/p/ecrashtesting/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -4,35 +4,25 @@
 1    *A: I'm getting an error saying that I need a JDK instead of a JRE. What should I do?*
     R: You should make sure you have a Java Development Kit (JDK) installed on your machine.     You can download it from [here](http://www.oracle.com/technetwork/java/javase/downloads/index.html).

-
-
-
 2    *A: I'm getting an OutOfMemoryError: PermGenSpace. How can I solve this?*
     R: You have to increase the amount of memory for PermSize. To do this include the argument "-XX:MaxPermSize=1024m" in the list of Java VM Options (see [list of arguments](http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html)).  For instance: 

-
 ~~~~~~
 java -XX:MaxPermSize=1024m [other VM arguments] -jar ecrash.jar eCrash.Generate -testclass  [optional parameters]
-
 ~~~~~~
-
-
+&lt;br /&gt;

 3    *A: I'm getting an java.lang.VerifyError: Expecting a stackmap frame at branch target. How can I solve this?*
     R: You have to add the VM argument "-XX:+UseSplitVerifier" in the list of Java VM Options (see [list of arguments](http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html)). For instance:

-
 ~~~~~~
 java -XX:+UseSplitVerifier [other VM arguments] -jar ecrash.jar -testclass eCrash.Generate -testclass   [optional parameters]
 ~~~~~~
-
-
+&lt;br /&gt;

 4    *A: I'm getting an  java.lang.ClassNotFoundException: [L;. How can I solve this?*
     R: You have to add the VM argument "-Dsun.lang.ClassLoader.allowArraySyntax=true". For instance:

-
-
 ~~~~~~
 java -Dsun.lang.ClassLoader.allowArraySyntax=true [other VM arguments] -jar ecrash.jar eCrash.Generate -testclass  [optional parameters]
 ~~~~~~
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ana Filipa Nogueira</dc:creator><pubDate>Wed, 04 Dec 2013 18:55:41 -0000</pubDate><guid>https://sourceforge.net55a862bdc66a0a9c6235f16046fa486b132a13de</guid></item><item><title>FAQ modified by Ana Filipa Nogueira</title><link>https://sourceforge.net/p/ecrashtesting/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -6,8 +6,33 @@

+
 2    *A: I'm getting an OutOfMemoryError: PermGenSpace. How can I solve this?*
-    R: You have to increase the amount of memory for PermSize. To do this include the argument:
-    "-XX:MaxPermSize=1024m" in the list of Java VM Options (see [list of arguments])(http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html).  For instance: 
+    R: You have to increase the amount of memory for PermSize. To do this include the argument "-XX:MaxPermSize=1024m" in the list of Java VM Options (see [list of arguments](http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html)).  For instance: 

-java -XX:MaxPermSize=1024m &lt;*other VM arguments*&gt; ecrash_2013_12_01.jar -testclass &lt;*class under test*&gt; &lt;*other parameters*&gt;
+
+~~~~~~
+java -XX:MaxPermSize=1024m [other VM arguments] -jar ecrash.jar eCrash.Generate -testclass  [optional parameters]
+
+~~~~~~
+
+
+
+3    *A: I'm getting an java.lang.VerifyError: Expecting a stackmap frame at branch target. How can I solve this?*
+    R: You have to add the VM argument "-XX:+UseSplitVerifier" in the list of Java VM Options (see [list of arguments](http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html)). For instance:
+
+
+~~~~~~
+java -XX:+UseSplitVerifier [other VM arguments] -jar ecrash.jar -testclass eCrash.Generate -testclass   [optional parameters]
+~~~~~~
+
+
+
+4    *A: I'm getting an  java.lang.ClassNotFoundException: [L;. How can I solve this?*
+    R: You have to add the VM argument "-Dsun.lang.ClassLoader.allowArraySyntax=true". For instance:
+
+
+
+~~~~~~
+java -Dsun.lang.ClassLoader.allowArraySyntax=true [other VM arguments] -jar ecrash.jar eCrash.Generate -testclass  [optional parameters]
+~~~~~~
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ana Filipa Nogueira</dc:creator><pubDate>Wed, 04 Dec 2013 18:17:04 -0000</pubDate><guid>https://sourceforge.neteadc69b9e410d9adf0bf9f6845bf5e877edb896d</guid></item><item><title>FAQ modified by Ana Filipa Nogueira</title><link>https://sourceforge.net/p/ecrashtesting/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,10 +1,13 @@
 Frequently asked questions(FAQ)
 ---

+1    *A: I'm getting an error saying that I need a JDK instead of a JRE. What should I do?*
+    R: You should make sure you have a Java Development Kit (JDK) installed on your machine.     You can download it from [here](http://www.oracle.com/technetwork/java/javase/downloads/index.html).

-* A: I'm getting an OutOfMemoryError: PermGenSpace. How can I solve this?
+
+2    *A: I'm getting an OutOfMemoryError: PermGenSpace. How can I solve this?*
     R: You have to increase the amount of memory for PermSize. To do this include the argument:
-    "-XX:MaxPermSize=1024m" in the list of Java VM Options.  For instance: 
+    "-XX:MaxPermSize=1024m" in the list of Java VM Options (see [list of arguments])(http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html).  For instance: 

 java -XX:MaxPermSize=1024m &lt;*other VM arguments*&gt; ecrash_2013_12_01.jar -testclass &lt;*class under test*&gt; &lt;*other parameters*&gt;
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ana Filipa Nogueira</dc:creator><pubDate>Mon, 02 Dec 2013 14:55:10 -0000</pubDate><guid>https://sourceforge.netbc3368dbe3f47b36d340f007388accab51628fb9</guid></item><item><title>FAQ modified by Ana Filipa Nogueira</title><link>https://sourceforge.net/p/ecrashtesting/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;h2 id="frequently-asked-questionsfaq"&gt;Frequently asked questions(FAQ)&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;A: I'm getting an OutOfMemoryError: PermGenSpace. How can I solve this?&lt;br /&gt;
    R: You have to increase the amount of memory for PermSize. To do this include the argument:&lt;br /&gt;
    "-XX:MaxPermSize=1024m" in the list of Java VM Options.  For instance: &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;java -XX:MaxPermSize=1024m &amp;lt;&lt;em&gt;other VM arguments&lt;/em&gt;&amp;gt; ecrash_2013_12_01.jar -testclass &amp;lt;&lt;em&gt;class under test&lt;/em&gt;&amp;gt; &amp;lt;&lt;em&gt;other parameters&lt;/em&gt;&amp;gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ana Filipa Nogueira</dc:creator><pubDate>Mon, 02 Dec 2013 14:49:40 -0000</pubDate><guid>https://sourceforge.netba8ce916b1bdbba3d75bd87c4e7b2d09a877c43e</guid></item></channel></rss>