From 4b76099a7bd93ca11a67cca2d62806fb60a7e0e0 Mon Sep 17 00:00:00 2001 From: "bclary%bclary.com" Date: Thu, 26 Jun 2008 17:00:37 +0000 Subject: [PATCH] Sisyphus Buildbot - remove -R restart argument and poll JSRef, bug 441868, r=rcampbell git-svn-id: svn://10.0.0.236/trunk@252606 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/tools/buildbot-configs/testing/sisyphus/master.cfg | 4 ++-- mozilla/tools/buildbot-configs/testing/sisyphus/sisyphus.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/tools/buildbot-configs/testing/sisyphus/master.cfg b/mozilla/tools/buildbot-configs/testing/sisyphus/master.cfg index 9c5ed2bc763..d1200ffa81b 100644 --- a/mozilla/tools/buildbot-configs/testing/sisyphus/master.cfg +++ b/mozilla/tools/buildbot-configs/testing/sisyphus/master.cfg @@ -80,13 +80,13 @@ from buildbot.changes import bonsaipoller c['sources'] = [] c['sources'].append(bonsaipoller.BonsaiPoller( bonsaiURL = "http://bonsai.mozilla.org", - module = "PhoenixTinderbox", + module = "JSRef", branch = "HEAD", pollInterval = 1 * 60)) c['sources'].append(bonsaipoller.BonsaiPoller( bonsaiURL = "http://bonsai.mozilla.org", - module = "AviarySuiteBranchTinderbox", + module = "JSRef", branch = "MOZILLA_1_8_BRANCH", pollInterval = 1 * 60)) diff --git a/mozilla/tools/buildbot-configs/testing/sisyphus/sisyphus.py b/mozilla/tools/buildbot-configs/testing/sisyphus/sisyphus.py index 051f3449d96..3eed1474a5b 100644 --- a/mozilla/tools/buildbot-configs/testing/sisyphus/sisyphus.py +++ b/mozilla/tools/buildbot-configs/testing/sisyphus/sisyphus.py @@ -80,7 +80,7 @@ class SisyphusBrowserTest(SisyphusJSTest): def start(self): self.setCommand(["tests/mozilla.org/js/runtests.sh", "-p", self.product, "-b", self.branch, "-T", self.buildType, - "-B", "checkout build", "-c", "-R", "-S"]) + "-B", "checkout build", "-c", "-S"]) ShellCommand.start(self) class CygwinBashShellCommand(ShellCommand): @@ -134,6 +134,6 @@ class SisyphusBrowserTestWin(SisyphusJSTestWin): def start(self): self.command = ["tests/mozilla.org/js/runtests.sh", "-p", self.product, "-b", self.branch, - "-T", self.buildType, "-B", "checkout-build", "-c", "-R", "-S"] + "-T", self.buildType, "-B", "checkout-build", "-c", "-S"] CygwinBashShellCommand.start(self)