mirror of
https://git.rtems.org/rtems-docs/
synced 2025-06-06 16:23:04 +08:00
waf: Fix ''NoneType' object is not iterable'
This commit is contained in:
parent
ee086511cf
commit
b6272bbd56
@ -126,10 +126,12 @@ def configure_tests(conf):
|
||||
bld(features = 'tex', type = 'pdflatex', source = 'main.tex', prompt = 0)
|
||||
|
||||
tests = sorted(package_tests.keys())
|
||||
excludes = [p[:p.rfind('.')] for p in local_packages()]
|
||||
for e in excludes:
|
||||
if e in tests:
|
||||
tests.remove(e)
|
||||
local_packs = local_packages()
|
||||
if local_packs is not None:
|
||||
excludes = [p[:p.rfind('.')] for p in local_packs]
|
||||
for e in excludes:
|
||||
if e in tests:
|
||||
tests.remove(e)
|
||||
|
||||
fails = 0
|
||||
for t in tests:
|
||||
|
Loading…
x
Reference in New Issue
Block a user