Changeset a5121bf for tests/pybin
- Timestamp:
- Aug 7, 2018, 3:23:34 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 575a6e5
- Parents:
- 524ed86
- Location:
- tests/pybin
- Files:
-
- 2 edited
-
settings.py (modified) (3 diffs)
-
tools.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
r524ed86 ra5121bf 67 67 self.flags = """DEBUG_FLAGS="%s" """ % ("-debug" if value else "-nodebug") 68 68 69 class Install: 70 def __init__(self, value): 71 self.string = "installed" if value else "in-tree" 72 self.flags = """INSTALL_FLAGS="%s" """ % ("" if value else "-in-tree") 73 69 74 def init( options ): 70 75 global arch … … 73 78 global make 74 79 global debug 75 global debugFlag80 global install 76 81 77 82 dry_run = options.dry_run … … 79 84 make = 'make' 80 85 debug = Debug(options.debug) 86 install = Install(options.install) 81 87 arch = Architecture(options.arch) 82 88 -
tests/pybin/tools.py
r524ed86 ra5121bf 102 102 test_param, 103 103 settings.debug.flags, 104 settings.install.flags, 104 105 flags, 105 106 target,
Note:
See TracChangeset
for help on using the changeset viewer.