Merge branch '4.3.x'
This commit is contained in:
commit
35c2dc7ca3
2 changed files with 5 additions and 3 deletions
|
@ -42,8 +42,8 @@ module Puppet::Parser::Functions
|
|||
rescue Puppet::ExecutionFailure => detail
|
||||
msg += "\n#{detail}"
|
||||
raise Puppet::ParseError, msg
|
||||
rescue SystemCallError => detail
|
||||
msg += "\nWin32::Process::SystemCallError #{detail}"
|
||||
rescue Exception => detail
|
||||
msg += "\n#{detail.class.name} #{detail}"
|
||||
raise Puppet::ParseError, msg
|
||||
ensure
|
||||
tmpfile.unlink
|
||||
|
|
|
@ -40,7 +40,9 @@ describe 'validate_cmd function', :unless => UNSUPPORTED_PLATFORMS.include?(fact
|
|||
validate_cmd($one,$two,"aoeu is dvorak")
|
||||
EOS
|
||||
|
||||
expect(apply_manifest(pp, :expect_failures => true).stderr).to match(/aoeu is dvorak/)
|
||||
apply_manifest(pp, :expect_failures => true) do |output|
|
||||
expect(output.stderr).to match(/aoeu is dvorak/)
|
||||
end
|
||||
end
|
||||
end
|
||||
describe 'failure' do
|
||||
|
|
Loading…
Reference in a new issue