diff options
| author | Mike McQuaid | 2014-06-04 16:21:20 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2014-06-04 16:21:42 +0100 |
| commit | eebef9b2d4e575f62dd9e55cdcd29cfd3f4935e1 (patch) | |
| tree | 5a3623af234245eb8639ef2c00c326dd78523ab3 | |
| parent | 12b5de391ed51c433a402a55afa7675d3ad823d6 (diff) | |
| download | brew-eebef9b2d4e575f62dd9e55cdcd29cfd3f4935e1.tar.bz2 | |
brew-test-bot: strip bell/alert character.
| -rwxr-xr-x | Library/Contributions/cmd/brew-test-bot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb index efcc8a984..a9ad48ae2 100755 --- a/Library/Contributions/cmd/brew-test-bot.rb +++ b/Library/Contributions/cmd/brew-test-bot.rb @@ -522,7 +522,7 @@ if ARGV.include? "--junit" failure = testcase.add_element 'failure' if step.failed? if step.has_output? # Remove invalid XML CData characters from step output. - output = REXML::CData.new step.output.delete("\000\b\e\f") + output = REXML::CData.new step.output.delete("\000\a\b\e\f") if step.passed? system_out = testcase.add_element 'system-out' system_out.text = output |
