#248: depcheck: simultaneous run may report incorrect results --------------------+------------------------------------------------------- Reporter: kparal | Owner: wwoods Type: task | Status: assigned Priority: major | Milestone: 0.4.4 Component: tests | Resolution: Keywords: | --------------------+------------------------------------------------------- Comment (by jlaska):
I think we decided that only one depcheck test could be running per platform (aka arch), per distro, right? To accomplish that, how about something like the following in the depcheck/control.autoqa file?
{{{
# To serialize depcheck tests, we add the following label requirements: # label = platform -- architecture (handled by the autoqa script) # label = 'depcheck' -- system specifically tagged for depcheck tests # label = 'FNN' -- specific distro # TODO - if/when depcheck is able to serialize itself, these label # requirements can be loosened
labels = ['depcheck']
# From the 'envr', find the %{distro} value labels.append(autoqa_args.get('envr','').split('.')[-1]) }}}
We can also add the new ''depcheck'' label to the wiki documentation (https://fedoraproject.org/wiki/Managing_autotest_labels). Is this, or something similar, acceptable?