zephyr/tests/kernel/fatal
Kumar Gala a1b77fd589 zephyr: replace zephyr integer types with C99 types
git grep -l 'u\(8\|16\|32\|64\)_t' | \
		xargs sed -i "s/u\(8\|16\|32\|64\)_t/uint\1_t/g"
	git grep -l 's\(8\|16\|32\|64\)_t' | \
		xargs sed -i "s/s\(8\|16\|32\|64\)_t/int\1_t/g"

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2020-06-08 08:23:57 -05:00
..
src zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
CMakeLists.txt tests: make find_package(Zephyr...) REQUIRED 2020-05-29 10:47:25 +02:00
prj.conf tests: Never disable SMP 2019-09-26 16:54:06 -04:00
prj_arm_fpu_sharing.conf tests: Rename kernel.common.stack_protection_arm_fp_sharing 2020-05-08 10:58:33 +02:00
prj_armv8m_mpu_stack_guard.conf tests: Never disable SMP 2019-09-26 16:54:06 -04:00
protection_no_userspace.conf tests: Never disable SMP 2019-09-26 16:54:06 -04:00
README tests: add fatal test case 2017-04-22 10:31:49 -04:00
sentinel.conf tests: Never disable SMP 2019-09-26 16:54:06 -04:00
testcase.yaml tests: Rename kernel.common.stack_protection_arm_fp_sharing 2020-05-08 10:58:33 +02:00

This test case verifies that kernel fatal error handling works correctly.

If a thread causes a CPU exception, and it is not in an ISR or "essential"
thread, the thread gets aborted and the rest of the system executes normally.