def load_tests(): ''' Create a TestLoader and load tests for the directory given by the config. ''' testloader = loader_mod.Loader() log.test_log.message(terminal.separator()) log.test_log.message('Loading Tests', bold=True) testloader.load_root(configuration.config.directory) return testloader
def do_rerun(): # Init early parts of log with RunLogHandler() as log_handler: # Load previous results results = result.InternalSavedResults.load( os.path.join(configuration.config.result_path, configuration.constants.pickle_filename)) rerun_suites = (suite.uid for suite in results if suite.unsuccessful) # Use loader to load suites loader = loader_mod.Loader() test_schedule = loader.load_schedule_for_suites(*rerun_suites) # Execute the tests return run_schedule(test_schedule, log_handler)
def do_run(): # Initialize early parts of the log. with RunLogHandler() as log_handler: if configuration.config.uid: uid_ = uid.UID.from_uid(configuration.config.uid) if isinstance(uid_, uid.TestUID): log.test_log.error( 'Unable to run a standalone test.\n' 'Gem5 expects test suites to be the smallest unit ' ' of test.\n\n' 'Pass a SuiteUID instead.') return test_schedule = loader_mod.Loader().load_schedule_for_suites(uid_) if get_config_tags(): log.test_log.warn( "The '--uid' flag was supplied," " '--include-tags' and '--exclude-tags' will be ignored.") else: test_schedule = load_tests().schedule # Filter tests based on tags filter_with_config_tags(test_schedule) # Execute the tests return run_schedule(test_schedule, log_handler)