zephyr/tests/kernel/critical
Alberto Escolar Piedras 59423b2435 test: kernel/critical fix for posix arch
Added small delay in each iteration of the critical_loop
loop for the posix arch:
For this arch this loop and critical_rtn would otherwise
run in 0 time and therefore the test would never finish.

Signed-off-by: Alberto Escolar Piedras <alpi@oticon.com>
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2017-12-27 14:16:08 -05:00
..
src test: kernel/critical fix for posix arch 2017-12-27 14:16:08 -05:00
CMakeLists.txt Introduce cmake-based rewrite of KBuild 2017-11-08 20:00:22 -05:00
README.txt kernel: remove remaining microkernel references 2017-04-10 20:21:05 +00:00
prj.conf build: remove unused Kconfig variables 2017-08-03 07:19:29 -05:00
testcase.yaml tests/samples: fixed yaml syntax 2017-12-11 14:47:08 -05:00

README.txt

Title: Offload to the Kernel offload workqueue

Description:

This test verifies that the kernel offload workqueue operates as
expected.

This test has two tasks that increment a counter.  The routine that
increments the counter is invoked from workqueue due to the two tasks
calling using it.  The final result of the counter is expected
to be the the number of times work item was called to increment
the counter.

This is done with time slicing both disabled and enabled to ensure that the
result always matches the number of times the workqueue is called.

--------------------------------------------------------------------------------

Building and Running Project:

This project outputs to the console.  It can be built and executed
on QEMU as follows:

    make run

--------------------------------------------------------------------------------

Troubleshooting:

Problems caused by out-dated project information can be addressed by
issuing one of the following commands then rebuilding the project:

    make clean          # discard results of previous builds
                        # but keep existing configuration info
or
    make pristine       # discard results of previous builds
                        # and restore pre-defined configuration info

--------------------------------------------------------------------------------

Sample Output:

Running test suite kernel_critical_test
tc_start() - test_critical
===================================================================
PASS - test_critical.
===================================================================
PROJECT EXECUTION SUCCESSFUL