w for w in config.compile_ways if w not in args.skipway ] config.broken_tests |= {TestName(t) for t in args.broken_test} if args.threads: config.threads = args.threads config.use_threads = True if args.verbose is not None: config.verbose = args.verbose # Note force skip perf tests: skip if this is not a git repo (estimated with inside_git_repo) # and no metrics file is given. In this case there is no way to read the previous commit's # perf test results, nor a way to store new perf test results. forceSkipPerfTests = not hasMetricsFile and not inside_git_repo() config.skip_perf_tests = args.skip_perf_tests or forceSkipPerfTests config.only_perf_tests = args.only_perf_tests if args.ignore_perf_failures == 'all': config.ignore_perf_decreases = True config.ignore_perf_increases = True elif args.ignore_perf_failures == 'increases': config.ignore_perf_increases = True elif args.ignore_perf_failures == 'decreases': config.ignore_perf_decreases = True if args.test_env: config.test_env = args.test_env config.cygwin = False config.msys = False
config.run_ways = [w for w in config.run_ways if w not in args.skipway] config.compile_ways = [ w for w in config.compile_ways if w not in args.skipway ] if args.threads: config.threads = args.threads config.use_threads = True if args.verbose is not None: config.verbose = args.verbose # Note force skip perf tests: skip if this is not a git repo (estimated with inside_git_repo) # and no metrics file is given. In this case there is no way to read the previous commit's # perf test results, nor a way to store new perf test results. canGitStatus = inside_git_repo() forceSkipPerfTests = not hasMetricsFile and not canGitStatus config.skip_perf_tests = args.skip_perf_tests or forceSkipPerfTests config.only_perf_tests = args.only_perf_tests if args.test_env: config.test_env = args.test_env config.cygwin = False config.msys = False if windows: h = os.popen('uname -s', 'r') v = h.read() h.close() if v.startswith("CYGWIN"):
config.other_ways = [w for w in config.other_ways if w not in args.skipway] config.run_ways = [w for w in config.run_ways if w not in args.skipway] config.compile_ways = [w for w in config.compile_ways if w not in args.skipway] if args.threads: config.threads = args.threads config.use_threads = True if args.verbose is not None: config.verbose = args.verbose # Note force skip perf tests: skip if this is not a git repo (estimated with inside_git_repo) # and no metrics file is given. In this case there is no way to read the previous commit's # perf test results, nor a way to store new perf test results. forceSkipPerfTests = not hasMetricsFile and not inside_git_repo() config.skip_perf_tests = args.skip_perf_tests or forceSkipPerfTests config.only_perf_tests = args.only_perf_tests if args.test_env: config.test_env = args.test_env config.cygwin = False config.msys = False if windows: h = os.popen('uname -s', 'r') v = h.read() h.close() if v.startswith("CYGWIN"): config.cygwin = True
config.other_ways = [w for w in config.other_ways if w not in args.skipway] config.run_ways = [w for w in config.run_ways if w not in args.skipway] config.compile_ways = [w for w in config.compile_ways if w not in args.skipway] if args.threads: config.threads = args.threads config.use_threads = True if args.verbose is not None: config.verbose = args.verbose # Note force skip perf tests: skip if this is not a git repo (estimated with inside_git_repo) # and no metrics file is given. In this case there is no way to read the previous commit's # perf test results, nor a way to store new perf test results. canGitStatus = inside_git_repo() forceSkipPerfTests = not hasMetricsFile and not canGitStatus config.skip_perf_tests = args.skip_perf_tests or forceSkipPerfTests config.only_perf_tests = args.only_perf_tests if args.test_env: config.test_env = args.test_env config.cygwin = False config.msys = False if windows: h = os.popen('uname -s', 'r') v = h.read() h.close() if v.startswith("CYGWIN"):