Changeset 48f6252 for tests/pybin
- Timestamp:
- Dec 8, 2020, 6:40:21 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 364a03c
- Parents:
- 0f7a0ea (diff), d7a10af (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
tests/pybin/tools.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/tools.py
r0f7a0ea r48f6252 191 191 cmd = [s for s in cmd if s] 192 192 return sh(*cmd, output_file=output_file, error=error) 193 194 def make_recon(target): 195 cmd = [ 196 *settings.make, 197 '-W', 198 os.path.abspath(os.path.join(settings.BUILDDIR, '../driver/cfa')), 199 '--recon', 200 target 201 ] 202 cmd = [s for s in cmd if s] 203 return sh(*cmd, output_file=subprocess.PIPE) 193 204 194 205 def which(program):
Note:
See TracChangeset
for help on using the changeset viewer.