diff options
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/chromedriver/chrome/device_manager.cc | 6 | ||||
-rwxr-xr-x | chrome/test/chromedriver/test/run_py_tests.py | 6 | ||||
-rw-r--r-- | chrome/test/chromedriver/test/test_expectations | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/chrome/test/chromedriver/chrome/device_manager.cc b/chrome/test/chromedriver/chrome/device_manager.cc index 6493231..8bedee4 100644 --- a/chrome/test/chromedriver/chrome/device_manager.cc +++ b/chrome/test/chromedriver/chrome/device_manager.cc @@ -58,9 +58,9 @@ Status Device::SetUp(const std::string& package, } else if (package.compare("org.chromium.chrome.shell") == 0) { // ChromeShell known_activity = ".ChromeShellActivity"; - device_socket = "chromium_testshell_devtools_remote"; - command_line_file = "/data/local/tmp/chromium-testshell-command-line"; - exec_name = "chromium_testshell"; + device_socket = "chrome_shell_devtools_remote"; + command_line_file = "/data/local/tmp/chrome-shell-command-line"; + exec_name = "chrome_shell"; } else if (package.find("chrome") != std::string::npos && package.find("webview") == std::string::npos) { // Chrome. diff --git a/chrome/test/chromedriver/test/run_py_tests.py b/chrome/test/chromedriver/test/run_py_tests.py index 111fea6..48083b2 100755 --- a/chrome/test/chromedriver/test/run_py_tests.py +++ b/chrome/test/chromedriver/test/run_py_tests.py @@ -121,16 +121,16 @@ _ANDROID_NEGATIVE_FILTER['chrome_stable'] = ( _ANDROID_NEGATIVE_FILTER['chrome']) _ANDROID_NEGATIVE_FILTER['chrome_beta'] = ( _ANDROID_NEGATIVE_FILTER['chrome']) -_ANDROID_NEGATIVE_FILTER['chromium_test_shell'] = ( +_ANDROID_NEGATIVE_FILTER['chrome_shell'] = ( _ANDROID_NEGATIVE_FILTER['chrome'] + [ - # ChromiumTestShell doesn't support multiple tabs. + # ChromeShell doesn't support multiple tabs. 'ChromeDriverTest.testGetWindowHandles', 'ChromeDriverTest.testSwitchToWindow', 'ChromeDriverTest.testShouldHandleNewWindowLoadingProperly', ] ) _ANDROID_NEGATIVE_FILTER['chromedriver_webview_shell'] = ( - _ANDROID_NEGATIVE_FILTER['chromium_test_shell']) + _ANDROID_NEGATIVE_FILTER['chrome_shell']) class ChromeDriverBaseTest(unittest.TestCase): diff --git a/chrome/test/chromedriver/test/test_expectations b/chrome/test/chromedriver/test/test_expectations index 8c05db0..1e2803f 100644 --- a/chrome/test/chromedriver/test/test_expectations +++ b/chrome/test/chromedriver/test/test_expectations @@ -185,7 +185,7 @@ _OS_NEGATIVE_FILTER['android:chrome_stable'] = ( _OS_NEGATIVE_FILTER['android:chrome']) _OS_NEGATIVE_FILTER['android:chrome_beta'] = ( _OS_NEGATIVE_FILTER['android:chrome']) -_OS_NEGATIVE_FILTER['android:chromium_test_shell'] = ( +_OS_NEGATIVE_FILTER['android:chrome_shell'] = ( _OS_NEGATIVE_FILTER['android:chrome']) _OS_NEGATIVE_FILTER['android:chromedriver_webview_shell'] = ( _OS_NEGATIVE_FILTER['android:chrome'] + [ |