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
This commit is contained in:
bclary%bclary.com
2008-06-26 17:00:37 +00:00
parent fa9e0c34b5
commit 4b76099a7b
2 changed files with 4 additions and 4 deletions

View File

@@ -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))

View File

@@ -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)