zephyr/tests/kernel/test_pend
Dmitriy Korovkin 5a92f4b54f unified: Make test_pend unified capable.
test_pend test checks task_offload_to_fiber() routine.

Change-Id: I1d23e371accd633cce94db71b94f224b9b99a385
Signed-off-by: Dmitriy Korovkin <dmitriy.korovkin@windriver.com>
2016-09-23 18:51:07 +00:00
..
src build: move from srctree to ZEPHYR_BASE for app include paths 2016-06-30 14:36:39 +00:00
Makefile
README.txt
prj.conf
prj.mdef
testcase.ini unified: Make test_pend unified capable. 2016-09-23 18:51:07 +00:00

README.txt

Title: Microkernel Tasks Pending on Nanokernel Objects

Description:

This test verifies that microkernel tasks can pend on the following
nanokernel objects: FIFOs, LIFOs, semaphores and timers.

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

Building and Running Project:

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

    make qemu

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

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:

tc_start() - Test Microkernel Tasks Pending on Nanokernel Objects
Testing microkernel tasks block on nanokernel fifos ...
Testing nanokernel fifos time-out in correct order ...
Testing nanokernel fifos delivered data correctly ...
Testing microkernel tasks block on nanokernel lifos ...
Testing nanokernel lifos time-out in correct order ...
Testing nanokernel lifos delivered data correctly ...
Testing microkernel task waiting on nanokernel timer ...
===================================================================
PASS - task_monitor.
===================================================================
PROJECT EXECUTION SUCCESSFUL