You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by dj...@apache.org on 2009/10/31 18:43:07 UTC

svn commit: r831570 - /buildr/trunk/lib/buildr/scala/bdd.rb

Author: djspiewak
Date: Sat Oct 31 17:43:07 2009
New Revision: 831570

URL: http://svn.apache.org/viewvc?rev=831570&view=rev
Log:
Disabled name for Specs runs (already printed by Specs itself)

Modified:
    buildr/trunk/lib/buildr/scala/bdd.rb

Modified: buildr/trunk/lib/buildr/scala/bdd.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/scala/bdd.rb?rev=831570&r1=831569&r2=831570&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/scala/bdd.rb (original)
+++ buildr/trunk/lib/buildr/scala/bdd.rb Sat Oct 31 17:43:07 2009
@@ -81,12 +81,11 @@
       
       cmd_options = { :properties => options[:properties],
                       :java_args => options[:java_args],
-                      :classpath => dependencies }
+                      :classpath => dependencies,
+                      :name => false }
 
       runner = 'org.apache.buildr.SpecsSingletonRunner'
       specs.inject [] do |passed, spec|
-        cmd_options[:name] = spec
-        
         begin
           unless Util.win_os?
             Java::Commands.java(runner, task.compile.target.to_s, '-c', spec + '$', cmd_options)