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)