summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-07-19 14:49:41 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2016-07-19 14:49:41 -0700
commitbad96f846718685302fec9e627471b68cd9bab8f (patch)
tree389123e360546449c87ea051d2cc2539d0f2cc01 /spec/spec_helper.rb
parentdc5aa2759006f7cdb58bd085d64e3a6051b3158e (diff)
downloadchef-bad96f846718685302fec9e627471b68cd9bab8f.tar.gz
only work around resolver caching on linux
it should be the only O/S which needs it due to the way its glibc was written. it is the only O/S that we've recieved any bugs for.
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 2f6747c9af..55b0a9c3f6 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -152,6 +152,7 @@ RSpec.configure do |config|
config.filter_run_excluding :unix_only => true unless unix?
config.filter_run_excluding :aix_only => true unless aix?
config.filter_run_excluding :debian_family_only => true unless debian_family?
+ config.filter_run_excluding :linux_only => true unless linux?
config.filter_run_excluding :supports_cloexec => true unless supports_cloexec?
config.filter_run_excluding :selinux_only => true unless selinux_enabled?
config.filter_run_excluding :requires_root => true unless root?