summaryrefslogtreecommitdiffstats
path: root/spec/integration/util
diff options
context:
space:
mode:
authorPieter van de Bruggen <pieter@puppetlabs.com>2011-05-17 13:00:48 -0700
committerPieter van de Bruggen <pieter@puppetlabs.com>2011-05-17 13:00:48 -0700
commitd972ceaa8a799aa22dddbb81c3e0115bc94c52d4 (patch)
tree6207606eae9f209b64eb75e41fa52cbf3d345d1d /spec/integration/util
parent5457c70a66ef95482391e39e43f1fa99ac83e721 (diff)
downloadpuppet-d972ceaa8a799aa22dddbb81c3e0115bc94c52d4.tar.gz
puppet-d972ceaa8a799aa22dddbb81c3e0115bc94c52d4.tar.xz
puppet-d972ceaa8a799aa22dddbb81c3e0115bc94c52d4.zip
(#7507) Add more filters for Ruby 1.9 spec failures
Paired-With: Matt Robinson
Diffstat (limited to 'spec/integration/util')
-rwxr-xr-xspec/integration/util/file_locking_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/integration/util/file_locking_spec.rb b/spec/integration/util/file_locking_spec.rb
index 9e829df0e..3b6964e8b 100755
--- a/spec/integration/util/file_locking_spec.rb
+++ b/spec/integration/util/file_locking_spec.rb
@@ -13,7 +13,7 @@ describe Puppet::Util::FileLocking do
File.open(@file, "w") { |f| f.puts YAML.dump(@data) }
end
- it "should be able to keep file corruption from happening when there are multiple writers threads" do
+ it "should be able to keep file corruption from happening when there are multiple writers threads", :'fails_in_ruby_1.9.2' => true do
threads = []
sync = Sync.new
9.times { |a|