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

Unified Diff: client/site_tests/desktopui_V8Bench/desktopui_V8Bench.py

Issue 5740004: Move site_chrome_test, site_logging, site_log_reader, site_crash_test into cros dir. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 12 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: client/site_tests/desktopui_V8Bench/desktopui_V8Bench.py
diff --git a/client/site_tests/desktopui_V8Bench/desktopui_V8Bench.py b/client/site_tests/desktopui_V8Bench/desktopui_V8Bench.py
index c6d4376518b7baf1a522fc59bbdb6eda8b3c3a7f..9bd6c65838f8ba1bcfd60e3fbafd87ad00677de5 100644
--- a/client/site_tests/desktopui_V8Bench/desktopui_V8Bench.py
+++ b/client/site_tests/desktopui_V8Bench/desktopui_V8Bench.py
@@ -5,16 +5,16 @@
import logging, os, shutil
from autotest_lib.client.bin import utils
from autotest_lib.client.common_lib import error
-from autotest_lib.client.cros import httpd, ui, ui_test
+from autotest_lib.client.cros import cros_ui_test, httpd, ui
-class desktopui_V8Bench(ui_test.UITest):
+class desktopui_V8Bench(cros_ui_test.UITest):
version = 1
def initialize(self, creds='$default'):
self._test_url = 'http://localhost:8000/run.html'
self._testServer = httpd.HTTPListener(8000, docroot=self.srcdir)
self._testServer.run()
- ui_test.UITest.initialize(self, creds)
+ cros_ui_test.UITest.initialize(self, creds)
def setup(self, tarball='v8_v5.tar.bz2'):
@@ -27,7 +27,7 @@ class desktopui_V8Bench(ui_test.UITest):
def cleanup(self):
self._testServer.stop()
- ui_test.UITest.cleanup(self)
+ cros_ui_test.UITest.cleanup(self)
def run_once(self, timeout=60):

Powered by Google App Engine
This is Rietveld 408576698