From: Jason Etheridge Date: Thu, 3 Nov 2016 15:16:04 +0000 (-0400) Subject: switch from RSS to Atom X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4e7eb5b5a8177c9d75cf622ad39d1cf8c6bdf237;p=working%2Frandom.git switch from RSS to Atom Signed-off-by: Jason Etheridge --- diff --git a/qa/test_output_webifier.pl b/qa/test_output_webifier.pl index b31873374..a59219849 100755 --- a/qa/test_output_webifier.pl +++ b/qa/test_output_webifier.pl @@ -207,26 +207,27 @@ sub update_rss { #if (`diff pass_fail.txt pass_fail.txt.prev`) { $fail = `grep Failed pass_fail.txt`; open RSS_FILE, ">test_rss.xml"; - print RSS_FILE q^ - - - Test Output Summary - http://testing.evergreen-ils.org/~live/test.html - Live Test Suite - ^ . `date -R` . q^ - ^ . ( - $fail - ? q^Test Failure - http://testing.evergreen-ils.org/~live/test.html - http://testing.evergreen-ils.org/~live/test.html - One or more tests failed - ^ - : q^Test Success - http://testing.evergreen-ils.org/~live/test.html - http://testing.evergreen-ils.org/~live/test.html - All tests passed - ^ - ) . q^ - - + print RSS_FILE q^ + + + + Live Tester - EG Master + + ^ . `date -Iseconds` . q^ + + Evergreen Project + + http://testing.evergreen-ils.org/~live + + + Test ^ . ($fail ? 'Failure' : 'Success') . q^ + + http://testing.evergreen-ils.org/~live#^ . `date -Ins` . q^ + ^ . `date -Iseconds` . q^ + ^ . ($fail ? 'One or more tests failed' : 'All tests succeeded') . q^ + + + ^; close RSS_FILE; #}