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 2010/09/19 01:26:06 UTC

svn commit: r998566 - /buildr/trunk/spec/groovy/compiler_spec.rb

Author: boisvert
Date: Sat Sep 18 23:26:06 2010
New Revision: 998566

URL: http://svn.apache.org/viewvc?rev=998566&view=rev
Log:
Fix groovyc compiler spec for--trace

Modified:
    buildr/trunk/spec/groovy/compiler_spec.rb

Modified: buildr/trunk/spec/groovy/compiler_spec.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/spec/groovy/compiler_spec.rb?rev=998566&r1=998565&r2=998566&view=diff
==============================================================================
--- buildr/trunk/spec/groovy/compiler_spec.rb (original)
+++ buildr/trunk/spec/groovy/compiler_spec.rb Sat Sep 18 23:26:06 2010
@@ -184,8 +184,8 @@ describe 'groovyc compiler options' do
     groovyc.options.verbose.should be_false
   end
 
-  it 'should set verbose option when running with --trace option' do
-    trace true
+  it 'should set verbose option when running with --trace=groovyc option' do
+    Buildr.application.options.trace_categories = [:groovyc]
     groovyc.options.verbose.should be_true
   end