(self, suite, parent, arch)
| 565 | """Represents a runnable suite definition (i.e. has a main file). |
| 566 | """ |
| 567 | def __init__(self, suite, parent, arch): |
| 568 | super(RunnableConfig, self).__init__(suite, parent, arch) |
| 569 | self.arch = arch |
| 570 | assert self.main, "No main js file provided" |
| 571 | if not self.owners: |
| 572 | logging.error("No owners provided for %s" % self.name) |
| 573 | |
| 574 | def ChangeCWD(self, suite_path): |
| 575 | """Changes the cwd to to path defined in the current graph. |