Details
Description
in http://svn.codehaus.org/mvel/trunk
The patch is as follows.
===================================================================
— pom.xml (revision 1984)
+++ pom.xml (working copy)
@@ -66,6 +66,7 @@
<exclude>**/DroolsTest.java</exclude>
<exclude>**/FailureTests.java</exclude>
<exclude>**/PerformanceTest.java</exclude>
+ <exclude>**/CompiledPerformanceTests.java</exclude>
</excludes>
</configuration>
</plugin>
The following tests fail when it is my Locale(Locale.JAPAN).
Index: C:/home/yone/work/ganymedeworkspace/mvel-trunk/src/test/java/org/mvel2/tests/core/CoreConfidenceTests.java
===================================================================
— mvel-trunk/src/test/java/org/mvel2/tests/core/CoreConfidenceTests.java (revision 1984)
+++ mvel-trunk/src/test/java/org/mvel2/tests/core/CoreConfidenceTests.java (working copy)
@@ -4080,6 +4080,7 @@
ctx.setStrongTyping(true);
ctx.setStrictTypeEnforcement(true);
+ Locale.setDefault(Locale.US);
Cheese expectedCheese = new Cheese();
expectedCheese.setUseBy(new SimpleDateFormat("dd-MMM-yyyy").parse("10-Jul-1974"));
sorry, Summary is miss-typing.
the correct one is
Problem with mvn test.