Skip to content

Commit f2e8cb8

Browse files
author
Mohammad Azim Khan
committed
Fixed rebasing errors
1 parent 5b5022c commit f2e8cb8

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

tools/build_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,12 +314,12 @@ def prepare_toolchain(src_paths, target, toolchain_name,
314314
try:
315315
if toolchain_name == "GCC_ARM":
316316
toolchain = TOOLCHAIN_CLASSES[toolchain_name](
317-
target, options, notify, macros, silent,
317+
target, notify, macros, silent,
318318
extra_verbose=extra_verbose, build_profile=build_profile,
319319
coverage_filter=coverage_filter)
320320
else:
321321
toolchain = TOOLCHAIN_CLASSES[toolchain_name](
322-
target, options, notify, macros, silent,
322+
target, notify, macros, silent,
323323
extra_verbose=extra_verbose, build_profile=build_profile,
324324
coverage_filter=coverage_filter)
325325
except KeyError:

tools/test_api.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"""
1919

2020
import os
21-
import re
2221
import sys
2322
import json
2423
import uuid
@@ -2150,7 +2149,6 @@ def build_tests(tests, base_source_paths, build_path, target, toolchain_name,
21502149
bin_file = None
21512150
test_case_folder_name = os.path.basename(test_path)
21522151

2153-
<<<<<<< 205a97083e8ff9c0fdf55d0221675efacf6e0a88
21542152
args = (src_path, test_build_path, target, toolchain_name)
21552153
kwargs = {
21562154
'jobs': jobs,
@@ -2165,7 +2163,7 @@ def build_tests(tests, base_source_paths, build_path, target, toolchain_name,
21652163
'build_profile': build_profile,
21662164
'silent': True,
21672165
# Coverage requires main(). So if enabled on any module, enable it on test as well.
2168-
'coverage_filter': ".*" if coverage_filter else [])
2166+
'coverage_filter': ".*" if coverage_filter else []
21692167
}
21702168

21712169
results.append(p.apply_async(build_test_worker, args, kwargs))

0 commit comments

Comments
 (0)