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 508c05a120ef98205004943c6725c5a22e61320e..de9b63f901c2e074a406567e73b39490cd5f6eb8 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 |
@@ -132,6 +132,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): |