You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by bo...@apache.org on 2009/11/17 20:02:17 UTC

svn commit: r881443 - in /buildr/trunk: CHANGELOG lib/buildr/core/test.rb

Author: boisvert
Date: Tue Nov 17 19:02:16 2009
New Revision: 881443

URL: http://svn.apache.org/viewvc?rev=881443&view=rev
Log:
buildr test=all didn't run all tests as expected

Modified:
    buildr/trunk/CHANGELOG
    buildr/trunk/lib/buildr/core/test.rb

Modified: buildr/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=881443&r1=881442&r2=881443&view=diff
==============================================================================
--- buildr/trunk/CHANGELOG (original)
+++ buildr/trunk/CHANGELOG Tue Nov 17 19:02:16 2009
@@ -17,6 +17,7 @@
 * Fixed:  BUILDR-334 Eclipse .classpath files use absolute paths for library 
           entries (Stefan Wasilewski)
 * Fixed:  BUILDR-327 Specifying :plugin eclipse nature explicitly fails
+* Fixed:  buildr test=all didn't run all tests as expected
 
 1.3.5 (2009-10-05)
 * Added:  Interactive shell (REPL) support

Modified: buildr/trunk/lib/buildr/core/test.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/core/test.rb?rev=881443&r1=881442&r2=881443&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/core/test.rb (original)
+++ buildr/trunk/lib/buildr/core/test.rb Tue Nov 17 19:02:16 2009
@@ -228,7 +228,7 @@
       begin
         super
       rescue RuntimeError
-        raise if options[:fail_on_failure]
+        raise if options[:fail_on_failure] && Buildr.options.test != :all
       ensure
         teardown.invoke
       end