Changeset e173d3c for tests/pybin
- Timestamp:
- Aug 29, 2022, 8:00:07 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- e2e31c6
- Parents:
- 31b9d3c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
r31b9d3c re173d3c 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.