Changeset a468e1e9 for tests/pybin


Ignore:
Timestamp:
Dec 8, 2020, 11:03:42 AM (3 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
a778e8e
Parents:
08ce416
Message:

Test script now supports --list-dist which list all the files needed for tests.
Added dist-hook using --list-dist.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/pybin/tools.py

    r08ce416 ra468e1e9  
    191191        cmd = [s for s in cmd if s]
    192192        return sh(*cmd, output_file=output_file, error=error)
     193
     194def 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)
    193204
    194205def which(program):
Note: See TracChangeset for help on using the changeset viewer.