2012-03-06 Dirk Pranke <dpranke@chromium.org>
+ test_start_cmd (webkitpy.layout_tests.servers.http_server_unittest.TestHttpServer) is broken
+ https://bugs.webkit.org/show_bug.cgi?id=80468
+
+ Unreviewed, build fix.
+
+ Fixing a bug revealed by r80443 when we fixed filesystem.copyfile().
+
+ * Scripts/webkitpy/layout_tests/servers/http_server.py:
+ (Lighttpd._prepare_config):
+
+2012-03-06 Dirk Pranke <dpranke@chromium.org>
+
remove chromium_gpu ports
https://bugs.webkit.org/show_bug.cgi?id=80345
# bug that mod_alias.so loads it from the hard coded path.
if sys.platform == 'darwin':
tmp_module_path = '/tmp/lighttpd/lib'
- if not os.path.exists(tmp_module_path):
- os.makedirs(tmp_module_path)
+ if not self._filesystem.exists(tmp_module_path):
+ self._filesystem.maybe_make_directory(tmp_module_path)
lib_file = 'liblightcomp.dylib'
- self._filesystem.copyfile(os.path.join(module_path, lib_file),
- os.path.join(tmp_module_path, lib_file))
+ self._filesystem.copyfile(self._filesystem.join(module_path, lib_file),
+ self._filesystem.join(tmp_module_path, lib_file))
self._start_cmd = start_cmd
self._env = self._port_obj.setup_environ_for_server('lighttpd')