Sisyphus/JavaScript Tests - use restart mode for browser tests, include crash tests for shell and browser, bug 417935, r=rcampbell

This commit is contained in:
bclary%bclary.com 2008-02-16 18:12:07 +00:00
Родитель fb51dcf63d
Коммит c0a468a588
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -56,7 +56,7 @@ class SisyphusJSTest(ShellCommand):
def start(self):
self.setCommand(["./tests/mozilla.org/js/runtests.sh",
"-p", self.product, "-b", self.branch, "-T", self.buildType,
"-B", "checkout build", "-S"])
"-B", "checkout build", "-c", "-S"])
ShellCommand.start(self)
def evaluateCommand(self, cmd):
@ -74,6 +74,11 @@ class SisyphusBrowserTest(SisyphusJSTest):
descriptionDone = ["browsertest complete"]
product = "firefox"
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"])
ShellCommand.start(self)
class CygwinBashShellCommand(ShellCommand):
def start(self):