zephyr/tests/kernel/mp/src/main.c
Anas Nashif e73a95bd64 tests: kernel: use a consistent test suite name
Lots of tests use different ways for naming tests, make this consistent
across all tests.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2018-04-09 22:55:20 -04:00

49 lines
807 B
C

/*
* Copyright (c) 2018 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr.h>
#include <tc_util.h>
#include <ztest.h>
#include <kernel.h>
#define CPU1_STACK_SIZE 1024
K_THREAD_STACK_DEFINE(cpu1_stack, CPU1_STACK_SIZE);
int cpu_arg;
volatile int cpu_running;
void cpu1_fn(int key, void *arg)
{
zassert_true(key, "bad irq key");
zassert_true(arg == &cpu_arg && *(int *)arg == 12345, "wrong arg");
cpu_running = 1;
while (1) {
}
}
void test_mp_start(void)
{
cpu_arg = 12345;
_arch_start_cpu(1, cpu1_stack, CPU1_STACK_SIZE, cpu1_fn, &cpu_arg);
while (!cpu_running) {
}
zassert_true(cpu_running, "cpu1 didn't start");
}
void test_main(void)
{
ztest_test_suite(multiprocessing,
ztest_unit_test(test_mp_start));
ztest_run_test_suite(multiprocessing);
}