aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2014-06-04 16:21:20 +0100
committerMike McQuaid2014-06-04 16:21:42 +0100
commiteebef9b2d4e575f62dd9e55cdcd29cfd3f4935e1 (patch)
tree5a3623af234245eb8639ef2c00c326dd78523ab3
parent12b5de391ed51c433a402a55afa7675d3ad823d6 (diff)
downloadbrew-eebef9b2d4e575f62dd9e55cdcd29cfd3f4935e1.tar.bz2
brew-test-bot: strip bell/alert character.
-rwxr-xr-xLibrary/Contributions/cmd/brew-test-bot.rb2
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