(t, *args)
| 223 | |
| 224 | |
| 225 | def _getExternalValues(t, *args): |
| 226 | t.run_build_system(["---var-name=%s" % x for x in args]) |
| 227 | result = dict() |
| 228 | for x in args: |
| 229 | m = re.search(r"^\*\*\*ENV\*\*\* %s: '(.*)' \*\*\*$" % x, t.stdout(), |
| 230 | re.MULTILINE) |
| 231 | if m: |
| 232 | result[x] = m.group(1) |
| 233 | else: |
| 234 | result[x] = None |
| 235 | return result |
| 236 | |
| 237 | |
| 238 | def _getJamVersionInfo(t): |
no test coverage detected