Skip to content

Commit 241037d

Browse files
committed
TEMPORARY: disable IPC suite until serial is solved
This reverts commit e3e79a9.
1 parent 95ac000 commit 241037d

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
@@ -712,6 +712,14 @@ def _main():
712712
parser = _get_parser()
713713
args = parser.parse_args()
714714

715+
# Issue : https://github.com/ARMmbed/mbed-os-tf-m-regression-tests/issues/49
716+
# There is no support for this target to run Firmware Framework tests
717+
if args.suite == "IPC" and args.mcu == "ARM_MUSCA_S1":
718+
logging.info(
719+
"%s config is not supported for %s target" % (args.suite, args.mcu)
720+
)
721+
return
722+
715723
if args.list:
716724
logging.info(
717725
"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)