diff options
author | Daniel Pittman <daniel@puppetlabs.com> | 2011-05-25 14:25:32 -0700 |
---|---|---|
committer | Daniel Pittman <daniel@puppetlabs.com> | 2011-05-25 14:25:32 -0700 |
commit | 520cbc0292ec0cf75b6871bb0a4bc12bce506bb0 (patch) | |
tree | 3e6a0306a4276beaf443e71389ce28127987cee7 /spec/integration/util/file_locking_spec.rb | |
parent | 4d6703ca2eb295975d4dd5f8244af3313e959872 (diff) | |
parent | 78657fcd7f779af475dad8df9fe954b39c041fb4 (diff) | |
download | puppet-520cbc0292ec0cf75b6871bb0a4bc12bce506bb0.tar.gz puppet-520cbc0292ec0cf75b6871bb0a4bc12bce506bb0.tar.xz puppet-520cbc0292ec0cf75b6871bb0a4bc12bce506bb0.zip |
Merge branch '2.7.x'
Conflicts:
acceptance/tests/ticket_7117_broke_env_criteria_authconf.rb
Diffstat (limited to 'spec/integration/util/file_locking_spec.rb')
-rwxr-xr-x | spec/integration/util/file_locking_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/integration/util/file_locking_spec.rb b/spec/integration/util/file_locking_spec.rb index 3b6964e8b..624ba033c 100755 --- a/spec/integration/util/file_locking_spec.rb +++ b/spec/integration/util/file_locking_spec.rb @@ -3,7 +3,7 @@ require 'spec_helper' require 'puppet/util/file_locking' -describe Puppet::Util::FileLocking do +describe Puppet::Util::FileLocking, :'fails_on_ruby_1.9.2' => true do before :each do @file = Tempfile.new("puppetspec") filepath = @file.path @@ -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", :'fails_in_ruby_1.9.2' => true do + it "should be able to keep file corruption from happening when there are multiple writers threads" do threads = [] sync = Sync.new 9.times { |a| |