Changeset 64cf022


Ignore:
Timestamp:
Apr 17, 2020, 4:47:44 PM (4 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
692e6f1
Parents:
5d10e8a
Message:

Some Python class methods where actually static methods.

Location:
tests/pybin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tests/pybin/settings.py

    r5d10e8a r64cf022  
    8181                return True if not arch else self.target == arch
    8282
    83         @classmethod
    84         def make_canonical(_, arch):
     83        @staticmethod
     84        def make_canonical(arch):
    8585                return Architecture.KnownArchitectures[arch]
    8686
     
    105105                self.total  = Timeouts.check(tg)
    106106
    107         @classmethod
    108         def check(_, value):
     107        @staticmethod
     108        def check(value):
    109109                if value < 1:
    110110                        print("Timeouts must be at least 1 second", file=sys.stderr)
  • tests/pybin/test_run.py

    r5d10e8a r64cf022  
    4040                return os.path.normpath( os.path.join(settings.BUILDDIR, self.path, self.name) )
    4141
    42         @classmethod
    43         def valid_name(_, name):
     42        @staticmethod
     43        def valid_name(name):
    4444                return not name.endswith( ('.c', '.cc', '.cpp', '.cfa') )
    4545
    46         @classmethod
    47         def new_target(_, target, arch):
     46        @staticmethod
     47        def new_target(target, arch):
    4848                test = Test()
    4949                test.name = os.path.basename(target)
     
    7272                return text
    7373
    74         @classmethod
    75         def fmtDur( cls, duration ):
     74        @staticmethod
     75        def fmtDur( duration ):
    7676                if duration :
    7777                        hours, rem = divmod(duration, 3600)
Note: See TracChangeset for help on using the changeset viewer.