Skip to content

Commit b0843be

Browse files
committed
TEMPORARY: disable IPC suite until serial is solved
This reverts commit e3e79a9.
1 parent 5fd6b27 commit b0843be

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

build_tfm.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,14 @@ def _main():
708708
parser = _get_parser()
709709
args = parser.parse_args()
710710

711+
# Issue : https://github.com/ARMmbed/mbed-os-tf-m-regression-tests/issues/49
712+
# There is no support for this target to run Firmware Framework tests
713+
if args.suite == "IPC" and args.mcu == "ARM_MUSCA_S1":
714+
logging.info(
715+
"%s config is not supported for %s target" % (args.suite, args.mcu)
716+
)
717+
return
718+
711719
if args.list:
712720
logging.info(
713721
"Supported TF-M regression targets are: {}".format(

test_psa_target.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,14 @@ def _build_compliance_test(args, test_spec):
305305

306306
for suite in PSA_SUITE_CHOICES:
307307

308+
# Issue : https://github.com/ARMmbed/mbed-os-tf-m-regression-tests/issues/49
309+
# There is no support for this target to run Firmware Framework tests
310+
if suite == "IPC" and args.mcu == "ARM_MUSCA_S1":
311+
logging.info(
312+
"%s config is not supported for %s target" % (suite, args.mcu)
313+
)
314+
continue
315+
308316
logging.info("Build PSA Compliance - %s suite for %s", suite, args.mcu)
309317

310318
_build_tfm(args, "PsaApiTestIPC", suite)

0 commit comments

Comments
 (0)