Expands $toolset placeholder in the given file to the name of the toolset currently being tested.
(self, name)
| 413 | os.chdir(self.workdir) |
| 414 | |
| 415 | def expand_toolset(self, name): |
| 416 | """ |
| 417 | Expands $toolset placeholder in the given file to the name of the |
| 418 | toolset currently being tested. |
| 419 | |
| 420 | """ |
| 421 | self.write(name, self.read(name).replace("$toolset", self.toolset)) |
| 422 | |
| 423 | def dump_stdio(self): |
| 424 | annotation("STDOUT", self.stdout()) |
no test coverage detected