From 4e7eb5b5a8177c9d75cf622ad39d1cf8c6bdf237 Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Thu, 3 Nov 2016 11:16:04 -0400 Subject: [PATCH] switch from RSS to Atom Signed-off-by: Jason Etheridge --- qa/test_output_webifier.pl | 41 +++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) 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; #} -- 2.11.0