diff --git a/validate/tools/launcher/main.py b/validate/tools/launcher/main.py index ea08c143f8..1125e23631 100644 --- a/validate/tools/launcher/main.py +++ b/validate/tools/launcher/main.py @@ -162,17 +162,17 @@ def main(): % options.clone_dir, Colors.FAIL, True) return -1 - tests_launcher.set_settings(options, args) - blacklisted = tests_launcher.get_blacklisted() if blacklisted: msg = "Currently 'hardcoded' blacklisted tests:\n" for name, bug in blacklisted: - sys.argv.extend(["-b", name]) + options.blacklisted_tests.append(name) msg += " + %s -- bug: %s\n" % (name, bug) printc(msg, Colors.FAIL, True) + tests_launcher.set_settings(options, args) + if options.remote_assets_url and options.sync: if os.path.exists(options.clone_dir): launch_command("cd %s && %s" % (options.clone_dir,