diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2015-05-28 10:52:31 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2015-05-28 10:52:31 -0700 |
commit | 05351f833eb20328b8959ac12437f8a541f596a2 (patch) | |
tree | f45e8343529216cb47dd714664d3a8e1f4db20f1 | |
parent | d8172e646d9fbf43e57bca5e20d0ac352ba9a66a (diff) | |
parent | 5b2b88ffceb11ed581120cb6ecaca828e8a76962 (diff) | |
download | chef-05351f833eb20328b8959ac12437f8a541f596a2.tar.gz |
Merge pull request #3439 from chef/lcg/windows-doesnt-have-uname
windows does not have uname
-rw-r--r-- | spec/spec_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 8b5e42e5b6..dcf244c3cc 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -151,7 +151,7 @@ RSpec.configure do |config| config.filter_run_excluding :aes_256_gcm_only => true unless aes_256_gcm? config.filter_run_excluding :broken => true - running_platform_arch = `uname -m`.strip + running_platform_arch = `uname -m`.strip unless windows? config.filter_run_excluding :arch => lambda {|target_arch| running_platform_arch != target_arch |