aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-06-04 16:21:20 +0100
committerMike McQuaid2014-06-04 16:21:42 +0100
commite538a0eb9f31b8b708b930d30ca2ba546cf2d597 (patch)
tree58e9ba7bd644341d9d3ec1e5087aa7a08f2b1aaf /Library
parent4ed829861fbb2f2bbb7b925ec33c8ea18608a21c (diff)
downloadhomebrew-e538a0eb9f31b8b708b930d30ca2ba546cf2d597.tar.bz2
brew-test-bot: strip bell/alert character.
Diffstat (limited to 'Library')
-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