diff options
author | Jay Mundrawala <jdmundrawala@gmail.com> | 2016-01-22 14:53:49 -0800 |
---|---|---|
committer | Jay Mundrawala <jdmundrawala@gmail.com> | 2016-01-25 09:54:21 -0800 |
commit | 6e784ba749b543b13f667a2e267877f0d54141cb (patch) | |
tree | 9da2c4eb2b35f0fffc22cba70644670edc4f2831 /spec/spec_helper.rb | |
parent | 724c32510f097ebdffdcc387392862a9ae5f835c (diff) | |
download | chef-6e784ba749b543b13f667a2e267877f0d54141cb.tar.gz |
Skip Version0 encrypted databag tests when in fips mode
aes-256-cbc does not seem to work when openssl is in fips mode.
The only other reference I could find to this was:
https://access.redhat.com/solutions/176633
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index e69d61a7b3..378381ddcc 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -165,6 +165,7 @@ RSpec.configure do |config| config.filter_run_excluding :aes_256_gcm_only => true unless aes_256_gcm? config.filter_run_excluding :broken => true config.filter_run_excluding :not_wpar => true unless wpar? + config.filter_run_excluding :not_fips => true unless fips? running_platform_arch = `uname -m`.strip unless windows? |