Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py |
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py |
index a2573d93f2f1014c435452be5764b534fe258c5c..db851b0ff0f2ab23dd23c9c9dc6592929667dd56 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android_unittest.py |
@@ -196,6 +196,15 @@ class AndroidPortTest(port_testcase.PortTestCase): |
self.assertEqual(self.make_port(options=optparse.Values({'configuration': 'Release'})).default_timeout_ms(), 10000) |
self.assertEqual(self.make_port(options=optparse.Values({'configuration': 'Debug'})).default_timeout_ms(), 10000) |
+ def test_path_to_apache_config_file(self): |
+ port = self.make_port() |
+ port._host_port.path_to_apache_config_file = lambda: '/host/apache/conf' # pylint: disable=protected-access |
+ self.assertEqual(port.path_to_apache_config_file(), '/host/apache/conf') |
+ |
+ def test_skipped_directories_for_symbols(self): |
+ pass |
+ |
+ |
class ChromiumAndroidDriverTest(unittest.TestCase): |