Author: boisvert
Date: Tue Jun 21 21:35:15 2011
New Revision: 1138195
URL: http://svn.apache.org/viewvc?rev=1138195&view=rev
Log:
JRUBY-4927 now fixed in JRuby 1.6.2
Modified:
buildr/trunk/spec/core/common_spec.rb
Modified: buildr/trunk/spec/core/common_spec.rb
URL:
http://svn.apache.org/viewvc/buildr/trunk/spec/core/common_spec.rb?rev=1138195&r1=1138194&r2=1138195&view=diff
==============================================================================
--- buildr/trunk/spec/core/common_spec.rb (original)
+++ buildr/trunk/spec/core/common_spec.rb Tue Jun 21 21:35:15 2011
@@ -541,7 +541,7 @@ describe Buildr::Filter do
end
it 'should preserve mode bits except readable' do
- pending "Pending the release of the fix for JRUBY-4927" if RUBY_PLATFORM
=~ /java/
+ # legacy: pending "Pending the release of the fix for JRUBY-4927" if
RUBY_PLATFORM =~ /java/
Dir['src/*'].each { |file| File.chmod(0o755, file) }
@filter.from('src').into('target').run
Dir['target/*'].sort.each do |file|