Ignore:
Timestamp:
Dec 4, 2017, 6:10:25 PM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
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, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
099a40d
Parents:
bacc36c
Message:

Tests: moved debug flags to settings to eliminate parameters and functools

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/pybin/settings.py

    rbacc36c r209383b  
    1717        global generating
    1818        global make
     19        global debug
     20        global debugFlag
    1921
    2022        arch       = Architecture(options.arch)
     
    2224        generating = options.regenerate_expected
    2325        make       = './make_command_not_initialized'
     26        debug        = "debug" if options.debug else "no debug"
     27        debugFlag  = """DEBUG_FLAGS="%s" """ % ("-debug" if debug else "-nodebug")
    2428
    2529def updateMakeCmd(force, jobs):
Note: See TracChangeset for help on using the changeset viewer.