Changeset e173d3c for tests/pybin


Ignore:
Timestamp:
Aug 29, 2022, 8:00:07 PM (2 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
e2e31c6
Parents:
31b9d3c
Message:

'soft' removed old ast from tests.
Option still works but no longer has any effect.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/pybin/settings.py

    r31b9d3c re173d3c  
    102102                        self.target = ast
    103103                        self.string = "New AST"
    104                         self.flags  = """AST_FLAGS=-XCFA,--new-ast"""
     104                        self.flags  = """"""
    105105                elif ast == "old":
    106106                        self.target = ast
    107107                        self.string = "Old AST"
    108                         self.flags  = """AST_FLAGS=-XCFA,--old-ast"""
     108                        self.flags  = """"""
    109109                elif ast == None:
    110110                        self.target = "new" if config.NEWAST else "old"
    111111                        self.string = "Default AST (%s)" % self.target
    112                         self.flags  = """AST_FLAGS="""
     112                        self.flags  = """"""
    113113                else:
    114114                        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.