Changes in tests/pybin/tools.py [a468e1e9:080b0a1]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/tools.py
ra468e1e9 r080b0a1 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 target201 ]202 cmd = [s for s in cmd if s]203 return sh(*cmd, output_file=subprocess.PIPE)204 193 205 194 def which(program):
Note:
See TracChangeset
for help on using the changeset viewer.