summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan McLellan <btm@loftninjas.org>2015-01-27 13:49:46 -0800
committerBryan McLellan <btm@loftninjas.org>2015-01-27 13:49:46 -0800
commit5eb65027724b2be01001a81a29a307b475933856 (patch)
tree029a8ad60a96ffe1783a971b44cdcda3ea79a424
parent92eefc79bb28d217b15099655244228b9e1efec7 (diff)
parent19056914315776a93c33346f69896b9632355cda (diff)
downloadchef-5eb65027724b2be01001a81a29a307b475933856.tar.gz
Merge pull request #2780 from chef/btm/disable-windows-leak-tests
Disable win32 memory leak tests
-rw-r--r--spec/stress/win32/file_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/stress/win32/file_spec.rb b/spec/stress/win32/file_spec.rb
index dd1dcd305e..6c4b26b05c 100644
--- a/spec/stress/win32/file_spec.rb
+++ b/spec/stress/win32/file_spec.rb
@@ -24,12 +24,12 @@ describe 'Chef::ReservedNames::Win32::File', :windows_only do
@path = File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "data", "old_home_dir", "my-dot-emacs"))
end
- it "should not leak significant memory" do
+ it "should not leak significant memory", :volatile do
test = lambda { Chef::ReservedNames::Win32::File.symlink?(@path) }
expect(test).not_to leak_memory(:warmup => 50000, :iterations => 50000)
end
- it "should not leak handles" do
+ it "should not leak handles", :volatile do
test = lambda { Chef::ReservedNames::Win32::File.symlink?(@path) }
expect(test).not_to leak_handles(:warmup => 50, :iterations => 100)
end