mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-21 22:09:23 +01:00
test-runner: don't run duplicate tests
If the user provides duplicate tests in the list only append one of them to the list. This can happen accidentally when using glob matches.
This commit is contained in:
parent
9a15a46df5
commit
30158fe89c
@ -1013,15 +1013,17 @@ def build_test_list(args):
|
||||
tests = [test_root + '/' + x for x in full_list[i:] \
|
||||
if x.startswith('test')]
|
||||
elif os.path.exists(t):
|
||||
tests.append(t)
|
||||
if t not in tests:
|
||||
tests.append(t)
|
||||
elif os.path.exists(path):
|
||||
tests.append(path)
|
||||
if path not in tests:
|
||||
tests.append(path)
|
||||
else:
|
||||
matches = glob(path)
|
||||
if matches == []:
|
||||
raise Exception("Could not find test %s" % t)
|
||||
|
||||
tests.extend(matches)
|
||||
tests.extend(list(set(matches) - set(tests)))
|
||||
|
||||
return sorted(tests)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user