Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Unified Diff: scripts/common/unittests/annotator_test.py

Issue 22449006: Second attempt at adding archive_layout_test_results to the blink trybots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Fix archive_layout_tests to take gs-bucket Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/common/unittests/annotator_test.py
diff --git a/scripts/common/unittests/annotator_test.py b/scripts/common/unittests/annotator_test.py
index bc9c6cd89884ec34426d3ec21657f59f898d64c1..164dcef76ecd6f90aa2a7f6ad5c1b929b8c3671c 100755
--- a/scripts/common/unittests/annotator_test.py
+++ b/scripts/common/unittests/annotator_test.py
@@ -78,6 +78,7 @@ class TestAnnotationStreams(unittest.TestCase):
s.step_log_end('mylog')
s.step_log_line('myperflog', 'perf data')
s.step_log_end_perf('myperflog', 'dashboardname')
+ s.step_link('cool_link', 'https://cool.example.com/beano_gnarly')
s.write_log_lines('full_log', ['line one', 'line two'])
s.write_log_lines('full_perf_log', ['perf line one', 'perf line two'],
perf='full_perf')
@@ -97,6 +98,7 @@ class TestAnnotationStreams(unittest.TestCase):
'@@@STEP_LOG_END@mylog@@@',
'@@@STEP_LOG_LINE@myperflog@perf data@@@',
'@@@STEP_LOG_END_PERF@myperflog@dashboardname@@@',
+ '@@@STEP_LINK@cool_link@https://cool.example.com/beano_gnarly@@@',
'@@@STEP_LOG_LINE@full_log@line one@@@',
'@@@STEP_LOG_LINE@full_log@line two@@@',
'@@@STEP_LOG_END@full_log@@@',

Powered by Google App Engine
This is Rietveld 408576698