public
Rubygem
Description: Apache Buildr
Homepage: http://incubator.apache.org/buildr
Clone URL: git://github.com/vic/buildr.git
Search Repo:
Fixed: JUnit now accepts java_args and passes these arguments to the JVM
(only applicable when forking).


git-svn-id: https://svn.apache.org/repos/asf/incubator/buildr/trunk@655764 
13f79535-47bb-0310-9956-ffa450edef68
Assaf (author)
Tue May 13 00:49:56 -0700 2008
commit  bf2c2ef1cbeb3aef07c5ef07340071e398bc2eb9
tree    932e4ed6cdbbbe3b4fc2821ec4bec0b3defe0de8
parent  6c4a6f8912069e1aae5a9d16f11d8921daf5dc00
...
3
4
5
 
 
6
7
8
...
3
4
5
6
7
8
9
10
0
@@ -3,6 +3,8 @@
0
 * Changed: Upgraded to Net::SSH 2.0 and Net::SFTP 2.0.
0
 * Fixed: BUILDR-67 HTTP GET now works with query parameters (Tommy Knowlton).
0
 * Fixed: BUILDR-68 Now accepting JAVA_HOME setting on OS X (Nathan Hamblen).
0
+* Fixed: JUnit now accepts java_args and passes these arguments to the JVM
0
+(only applicable when forking).
0
 
0
 1.3.0 (2008-04-25)
0
 * Added: Testing with EasyB (Nicolas Modrzyk).
...
200
201
202
203
 
 
204
205
206
...
200
201
202
 
203
204
205
206
207
0
@@ -200,7 +200,8 @@
0
         ant.junit forking.merge(:clonevm=>options[:clonevm] || false, :dir=>task.send(:project).path_to) do
0
           ant.classpath :path=>dependencies.join(File::PATH_SEPARATOR)
0
           (options[:properties] || []).each { |key, value| ant.sysproperty :key=>key, :value=>value }
0
- (options[:environment] || []).each { |key, value| ant.env :key=>key, :value=>value }
0
+ (options[:properties] || []).each { |key, value| ant.sysproperty :key=>key, :value=>value }
0
+ Array(options[:java_args]).each { |value| ant.jvmarg :value=>value }
0
           ant.formatter :type=>'plain'
0
           ant.formatter :type=>'plain', :usefile=>false # log test
0
           ant.formatter :type=>'xml'

Comments

    No one has commented yet.