mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
scan test: bugfix: now can build multi target for one app
This commit is contained in:
parent
3a88626ec3
commit
eda42035d2
@ -4,6 +4,7 @@ import json
|
||||
import logging
|
||||
import os
|
||||
from collections import defaultdict
|
||||
from copy import deepcopy
|
||||
|
||||
from find_apps import find_apps
|
||||
from find_build_apps import BUILD_SYSTEMS, BUILD_SYSTEM_CMAKE
|
||||
@ -124,7 +125,7 @@ def main():
|
||||
scan_info_dict = defaultdict(dict)
|
||||
# store the test cases dir, exclude these folders when scan for standalone apps
|
||||
default_exclude = args.exclude if args.exclude else []
|
||||
exclude_apps = default_exclude
|
||||
exclude_apps = deepcopy(default_exclude)
|
||||
|
||||
build_system = args.build_system.lower()
|
||||
build_system_class = BUILD_SYSTEMS[build_system]
|
||||
|
Loading…
x
Reference in New Issue
Block a user