mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
validate:launcher: Fix default blacklist management
This commit is contained in:
parent
f1851235d5
commit
f45524a3cc
1 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue