mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-14 19:55:12 +01:00
Meson: appinfo tests are racy if run in parallel
This commit is contained in:
parent
88a1188fc1
commit
27b5fb5892
@ -145,9 +145,11 @@ if host_machine.system() != 'windows'
|
|||||||
gio_tests += [{
|
gio_tests += [{
|
||||||
'appinfo' : {
|
'appinfo' : {
|
||||||
'install' : false,
|
'install' : false,
|
||||||
|
'is_parallel' : false,
|
||||||
},
|
},
|
||||||
'desktop-app-info' : {
|
'desktop-app-info' : {
|
||||||
'install' : false,
|
'install' : false,
|
||||||
|
'is_parallel' : false,
|
||||||
},
|
},
|
||||||
}]
|
}]
|
||||||
endif
|
endif
|
||||||
@ -480,8 +482,13 @@ foreach test_dict : gio_tests
|
|||||||
|
|
||||||
suite = ['gio'] + extra_args.get('suite', [])
|
suite = ['gio'] + extra_args.get('suite', [])
|
||||||
timeout = suite.contains('slow') ? 120 : 30
|
timeout = suite.contains('slow') ? 120 : 30
|
||||||
test(test_name, exe, env : test_env, timeout : timeout, suite : suite,
|
test(test_name, exe,
|
||||||
args : ['--tap'])
|
env : test_env,
|
||||||
|
timeout : timeout,
|
||||||
|
suite : suite,
|
||||||
|
args : ['--tap'],
|
||||||
|
is_parallel : extra_args.get('is_parallel', true),
|
||||||
|
)
|
||||||
endforeach
|
endforeach
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user