Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg (114352 => 114353)
--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg 2012-04-17 06:45:27 UTC (rev 114352)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg 2012-04-17 07:18:44 UTC (rev 114353)
@@ -244,15 +244,6 @@
flunkOnFailure = True
-class CreateWebKitBuildDirectory(shell.ShellCommand):
- command = ["mkdir", "-p", "WebKitBuild"]
- name = "create-webkitbuild-dir"
- description = ["creating WebKitBuild directory"]
- descriptionDone = ["created WebKitBuild directory"]
- haltOnFailure = True
- flunkOnFailure = True
-
-
class RunJavaScriptCoreTests(shell.Test):
name = "jscore-test"
description = ["jscore-tests running"]
@@ -827,7 +818,6 @@
class DownloadAndPerfTestFactory(Factory):
def __init__(self, platform, configuration, architectures, **kwargs):
Factory.__init__(self, platform, configuration, architectures, False, **kwargs)
- self.addStep(CreateWebKitBuildDirectory)
self.addStep(DownloadBuiltProduct)
self.addStep(ExtractBuiltProduct)
self.addStep(RunAndUploadPerfTests)
@@ -835,7 +825,6 @@
class DownloadAndPerfTestWebKit2Factory(Factory):
def __init__(self, platform, configuration, architectures, **kwargs):
Factory.__init__(self, platform, configuration, architectures, False, **kwargs)
- self.addStep(CreateWebKitBuildDirectory)
self.addStep(DownloadBuiltProduct)
self.addStep(ExtractBuiltProduct)
self.addStep(RunAndUploadPerfTestsWebKit2)
Modified: trunk/Tools/ChangeLog (114352 => 114353)
--- trunk/Tools/ChangeLog 2012-04-17 06:45:27 UTC (rev 114352)
+++ trunk/Tools/ChangeLog 2012-04-17 07:18:44 UTC (rev 114353)
@@ -1,3 +1,17 @@
+2012-04-16 Ryosuke Niwa <rn...@webkit.org>
+
+ Remove CreateWebKitBuildDirectory step to fix Chromium Windows Perf bot
+ https://bugs.webkit.org/show_bug.cgi?id=84068
+
+ Reviewed by Eric Seidel.
+
+ Remove CreateWebKitBuildDirectory from master.cfg since download-built-product
+ automatically creates the build directory if needed.
+
+ * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+ (DownloadAndPerfTestFactory.__init__):
+ (DownloadAndPerfTestWebKit2Factory.__init__):
+
2012-04-16 Gustavo Noronha Silva <g...@gnome.org>
[GTK] Use configure instead of autogen.sh for gtk+