Changeset a0dbf20 for tests/pybin/settings.py
- Timestamp:
- Aug 30, 2022, 6:30:32 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- 4858a88
- Parents:
- a8dd247 (diff), 01ba701 (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/settings.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
ra8dd247 ra0dbf20 102 102 self.target = ast 103 103 self.string = "New AST" 104 self.flags = """ AST_FLAGS=-XCFA,--new-ast"""104 self.flags = """""" 105 105 elif ast == "old": 106 106 self.target = ast 107 107 self.string = "Old AST" 108 self.flags = """ AST_FLAGS=-XCFA,--old-ast"""108 self.flags = """""" 109 109 elif ast == None: 110 110 self.target = "new" if config.NEWAST else "old" 111 111 self.string = "Default AST (%s)" % self.target 112 self.flags = """ AST_FLAGS="""112 self.flags = """""" 113 113 else: 114 114 print("""ERROR: Invalid ast configuration, must be "old", "new" or left unspecified, was %s""" % (value), file=sys.stderr)
Note:
See TracChangeset
for help on using the changeset viewer.