Skip to content

Commit f2b7909

Browse files
committed
tests: boards: intel_adsp/smoke: no CPU halt for ACE
On ACE, the CPU halting requires the cooperation of the PM subsys to set the CPU to SOFT_OFF. The mechanism has not been implemented in the smoke test. So skip the halting test on ACE for now. Signed-off-by: Daniel Leung <daniel.leung@intel.com>
1 parent bcf8eb9 commit f2b7909

File tree

1 file changed

+4
-0
lines changed
  • tests/boards/intel_adsp/smoke/src

1 file changed

+4
-0
lines changed

tests/boards/intel_adsp/smoke/src/cpus.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,10 @@ ZTEST(intel_adsp_boot, test_2nd_cpu_halt)
192192
{
193193
int ret;
194194

195+
if (IS_ENABLED(CONFIG_SOC_SERIES_INTEL_ADSP_ACE)) {
196+
ztest_test_skip();
197+
}
198+
195199
/* Obviously this only works on CPU0. So, we create a thread pinned
196200
* to CPU0 to effectively run the test.
197201
*/

0 commit comments

Comments
 (0)