Expands $toolset placeholder in the given file to the name of the toolset currently being tested.
(self, name)
| 402 | os.chdir(self.workdir) |
| 403 | |
| 404 | def expand_toolset(self, name): |
| 405 | """ |
| 406 | Expands $toolset placeholder in the given file to the name of the |
| 407 | toolset currently being tested. |
| 408 | |
| 409 | """ |
| 410 | self.write(name, self.read(name).replace("$toolset", self.toolset)) |
| 411 | |
| 412 | def dump_stdio(self): |
| 413 | annotation("STDOUT", self.stdout()) |
no test coverage detected