Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 | /* * Copyright (c) 2016 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #include <ztest.h> #include <stdio.h> #include <app_memory/app_memdomain.h> #ifdef CONFIG_USERSPACE #include <sys/libc-hooks.h> #endif #include <power/reboot.h> #ifdef KERNEL static struct k_thread ztest_thread; #endif /* ZTEST_DMEM and ZTEST_BMEM are used for the application shared memory test */ ZTEST_DMEM enum { TEST_PHASE_SETUP, TEST_PHASE_TEST, TEST_PHASE_TEARDOWN, TEST_PHASE_FRAMEWORK } phase = TEST_PHASE_FRAMEWORK; static ZTEST_BMEM int test_status; static int cleanup_test(struct unit_test *test) { int ret = TC_PASS; int mock_status; mock_status = z_cleanup_mock(); #ifdef KERNEL /* we need to remove the ztest_thread information from the timeout_q. * Because we reuse the same k_thread structure this would * causes some problems. */ k_thread_abort(&ztest_thread); #endif if (!ret && mock_status == 1) { PRINT("Test %s failed: Unused mock parameter values\n", test->name); ret = TC_FAIL; } else if (!ret && mock_status == 2) { PRINT("Test %s failed: Unused mock return values\n", test->name); ret = TC_FAIL; } return ret; } #ifdef KERNEL #ifdef CONFIG_SMP #define NUM_CPUHOLD (CONFIG_MP_NUM_CPUS - 1) #else #define NUM_CPUHOLD 0 #endif #define CPUHOLD_STACK_SZ (512 + CONFIG_TEST_EXTRA_STACKSIZE) static struct k_thread cpuhold_threads[NUM_CPUHOLD]; K_THREAD_STACK_ARRAY_DEFINE(cpuhold_stacks, NUM_CPUHOLD, CPUHOLD_STACK_SZ); static struct k_sem cpuhold_sem; volatile int cpuhold_active; /* "Holds" a CPU for use with the "1cpu" test cases. Note that we * can't use tools like the cpumask feature because we have tests that * may need to control that configuration themselves. We do this at * the lowest level, but locking interrupts directly and spinning. */ static void cpu_hold(void *arg1, void *arg2, void *arg3) { ARG_UNUSED(arg1); ARG_UNUSED(arg2); ARG_UNUSED(arg3); unsigned int key = arch_irq_lock(); u32_t dt, start_ms = k_uptime_get_32(); k_sem_give(&cpuhold_sem); while (cpuhold_active) { k_busy_wait(1000); } /* Holding the CPU via spinning is expensive, and abusing this * for long-running test cases tends to overload the CI system * (qemu runs separate CPUs in different threads, but the CI * logic views it as one "job") and cause other test failures. */ dt = k_uptime_get_32() - start_ms; zassert_true(dt < 3000, "1cpu test took too long (%d ms)", dt); arch_irq_unlock(key); } void z_impl_z_test_1cpu_start(void) { cpuhold_active = 1; k_sem_init(&cpuhold_sem, 0, 999); /* Spawn N-1 threads to "hold" the other CPUs, waiting for * each to signal us that it's locked and spinning. */ for (int i = 0; i < NUM_CPUHOLD; i++) { k_thread_create(&cpuhold_threads[i], cpuhold_stacks[i], CPUHOLD_STACK_SZ, (k_thread_entry_t) cpu_hold, NULL, NULL, NULL, K_HIGHEST_THREAD_PRIO, 0, K_NO_WAIT); k_sem_take(&cpuhold_sem, K_FOREVER); } } void z_impl_z_test_1cpu_stop(void) { cpuhold_active = 0; for (int i = 0; i < NUM_CPUHOLD; i++) { k_thread_abort(&cpuhold_threads[i]); } } #ifdef CONFIG_USERSPACE void z_vrfy_z_test_1cpu_start(void) { z_impl_z_test_1cpu_start(); } #include <syscalls/z_test_1cpu_start_mrsh.c> void z_vrfy_z_test_1cpu_stop(void) { z_impl_z_test_1cpu_stop(); } #include <syscalls/z_test_1cpu_stop_mrsh.c> #endif /* CONFIG_USERSPACE */ #endif static void run_test_functions(struct unit_test *test) { phase = TEST_PHASE_SETUP; test->setup(); phase = TEST_PHASE_TEST; test->test(); } #ifndef KERNEL #include <setjmp.h> #include <signal.h> #include <string.h> #include <stdlib.h> #define FAIL_FAST 0 static jmp_buf test_fail; static jmp_buf test_pass; static jmp_buf stack_fail; void ztest_test_fail(void) { raise(SIGABRT); } void ztest_test_pass(void) { longjmp(test_pass, 1); } static void handle_signal(int sig) { static const char *const phase_str[] = { "setup", "unit test", "teardown", }; PRINT(" %s", strsignal(sig)); switch (phase) { case TEST_PHASE_SETUP: case TEST_PHASE_TEST: case TEST_PHASE_TEARDOWN: PRINT(" at %s function\n", phase_str[phase]); longjmp(test_fail, 1); case TEST_PHASE_FRAMEWORK: PRINT("\n"); longjmp(stack_fail, 1); } } static void init_testing(void) { signal(SIGABRT, handle_signal); signal(SIGSEGV, handle_signal); if (setjmp(stack_fail)) { PRINT("Test suite crashed."); exit(1); } } static int run_test(struct unit_test *test) { int ret = TC_PASS; TC_START(test->name); if (setjmp(test_fail)) { ret = TC_FAIL; goto out; } if (setjmp(test_pass)) { ret = TC_PASS; goto out; } run_test_functions(test); out: ret |= cleanup_test(test); Z_TC_END_RESULT(ret, test->name); return ret; } #else /* KERNEL */ /* Zephyr's probably going to cause all tests to fail if one test fails, so * skip the rest of tests if one of them fails */ #ifdef CONFIG_ZTEST_FAIL_FAST #define FAIL_FAST 1 #else #define FAIL_FAST 0 #endif K_THREAD_STACK_DEFINE(ztest_thread_stack, CONFIG_ZTEST_STACKSIZE + CONFIG_TEST_EXTRA_STACKSIZE); static ZTEST_BMEM int test_result; static struct k_sem test_end_signal; void ztest_test_fail(void) { test_result = -1; k_sem_give(&test_end_signal); k_thread_abort(k_current_get()); } void ztest_test_pass(void) { test_result = 0; k_sem_give(&test_end_signal); k_thread_abort(k_current_get()); } void ztest_test_skip(void) { test_result = -2; k_sem_give(&test_end_signal); k_thread_abort(k_current_get()); } static void init_testing(void) { k_sem_init(&test_end_signal, 0, 1); k_object_access_all_grant(&test_end_signal); } static void test_cb(void *a, void *dummy2, void *dummy) { struct unit_test *test = (struct unit_test *)a; ARG_UNUSED(dummy2); ARG_UNUSED(dummy); test_result = 1; run_test_functions(test); test_result = 0; k_sem_give(&test_end_signal); } static int run_test(struct unit_test *test) { int ret = TC_PASS; TC_START(test->name); k_thread_create(&ztest_thread, ztest_thread_stack, K_THREAD_STACK_SIZEOF(ztest_thread_stack), (k_thread_entry_t) test_cb, (struct unit_test *)test, NULL, NULL, CONFIG_ZTEST_THREAD_PRIORITY, test->thread_options | K_INHERIT_PERMS, K_NO_WAIT); /* * There is an implicit expectation here that the thread that was * spawned is still higher priority than the current thread. * * If that is not the case, it will have given the semaphore, which * will have caused the current thread to run, _if_ the test case * thread is preemptible, since it is higher priority. If there is * another test case to be run after the current one finishes, the * thread_stack will be reused for that new test case while the current * test case has not finished running yet (it has given the semaphore, * but has _not_ gone back to z_thread_entry() and completed it's "abort * phase": this will corrupt the kernel ready queue. */ k_sem_take(&test_end_signal, K_FOREVER); phase = TEST_PHASE_TEARDOWN; test->teardown(); phase = TEST_PHASE_FRAMEWORK; if (test_result == -1) { ret = TC_FAIL; } if (!test_result || !FAIL_FAST) { ret |= cleanup_test(test); } if (test_result == -2) { Z_TC_END_RESULT(TC_SKIP, test->name); } else { Z_TC_END_RESULT(ret, test->name); } return ret; } #endif /* !KERNEL */ void z_ztest_run_test_suite(const char *name, struct unit_test *suite) { int fail = 0; if (test_status < 0) { return; } init_testing(); PRINT("Running test suite %s\n", name); PRINT_LINE; while (suite->test) { fail += run_test(suite); suite++; if (fail && FAIL_FAST) { break; } } if (fail) { TC_PRINT("Test suite %s failed.\n", name); } else { TC_PRINT("Test suite %s succeeded\n", name); } test_status = (test_status || fail) ? 1 : 0; } void end_report(void) { if (test_status) { TC_END_REPORT(TC_FAIL); } else { TC_END_REPORT(TC_PASS); } } #ifdef CONFIG_USERSPACE struct k_mem_domain ztest_mem_domain; K_APPMEM_PARTITION_DEFINE(ztest_mem_partition); #endif #ifndef KERNEL int main(void) { z_init_mock(); test_main(); end_report(); return test_status; } #else void main(void) { #ifdef CONFIG_USERSPACE struct k_mem_partition *parts[] = { #ifdef Z_LIBC_PARTITION_EXISTS /* C library globals, stack canary storage, etc */ &z_libc_partition, #endif #ifdef Z_MALLOC_PARTITION_EXISTS /* Required for access to malloc arena */ &z_malloc_partition, #endif &ztest_mem_partition }; /* Ztests just have one memory domain with one partition. * Any variables that user code may reference need to go in them, * using the ZTEST_DMEM and ZTEST_BMEM macros. */ k_mem_domain_init(&ztest_mem_domain, ARRAY_SIZE(parts), parts); k_mem_domain_add_thread(&ztest_mem_domain, k_current_get()); #endif /* CONFIG_USERSPACE */ z_init_mock(); test_main(); end_report(); if (IS_ENABLED(CONFIG_ZTEST_RETEST_IF_PASSED)) { static __noinit struct { u32_t magic; u32_t boots; } state; const u32_t magic = 0x152ac523; if (state.magic != magic) { state.magic = magic; state.boots = 0; } state.boots += 1; if (test_status == 0) { PRINT("Reset board #%u to test again\n", state.boots); k_sleep(K_MSEC(10)); sys_reboot(SYS_REBOOT_COLD); } else { PRINT("Failed after %u attempts\n", state.boots); state.boots = 0; } } } #endif |