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

Unified Diff: tools/testing/run_selenium.py

Issue 1576153002: Remove the Dromaeo and TodoMVC samples. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « tools/testing/perf_testing/run_perf_tests.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/run_selenium.py
diff --git a/tools/testing/run_selenium.py b/tools/testing/run_selenium.py
index ba4cc6d6af328cf72f4ed3e35cd4800d7b534a64..e2706190391944fe02a53cec4372ea787eda69b5 100755
--- a/tools/testing/run_selenium.py
+++ b/tools/testing/run_selenium.py
@@ -60,16 +60,10 @@ def perf_test_done(source):
source = source[index + len(string):end_index]
return 'Score:' in source
-def dromaeo_test_done(source):
- """Tests to see if our performance test is done by printing a score."""
- #TODO(efortuna): Access these elements in a nicer way using DOM parser.
- return '<body class="alldone">' in source
-
# TODO(vsm): Ideally, this wouldn't live in this file.
CONFIGURATIONS = {
'correctness': correctness_test_done,
- 'perf': perf_test_done,
- 'dromaeo': dromaeo_test_done
+ 'perf': perf_test_done
}
def run_test_in_browser(browser, html_out, timeout, mode, refresh):
@@ -247,7 +241,6 @@ def close_browser(browser):
browser.quit()
def report_results(mode, source, browser):
- # TODO(vsm): Add a failure check for Dromaeo.
if mode != 'correctness':
# We're running a performance test.
print source.encode('utf8')
« no previous file with comments | « tools/testing/perf_testing/run_perf_tests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698