aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/cmd
diff options
context:
space:
mode:
authorMike McQuaid2014-01-30 18:05:25 +0100
committerMike McQuaid2014-01-30 18:05:25 +0100
commit7ed97b14fd0ea9dd92e561c75dee43a9a6d5c571 (patch)
treeacf06940d29a110e270d47cd179c361f9bb6d901 /Library/Contributions/cmd
parentd307e5db96a3dea97c198c298440fa3750b8207e (diff)
downloadbrew-7ed97b14fd0ea9dd92e561c75dee43a9a6d5c571.tar.bz2
brew-test-bot: strip more unicode crap from XML.
Diffstat (limited to 'Library/Contributions/cmd')
-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 dad47fc94..d2d67cc6c 100755
--- a/Library/Contributions/cmd/brew-test-bot.rb
+++ b/Library/Contributions/cmd/brew-test-bot.rb
@@ -487,7 +487,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\f\e")
+ output = REXML::CData.new step.output.delete("\000\b\e\f")
if step.passed?
system_out = testcase.add_element 'system-out'
system_out.text = output