zephyr/samples/microkernel/test/test_pipe_priv
Peter Mitsis 5fe44f42ba Update Title in sample project README.txt files
Assigns more descriptive titles to the sample project README.txt files.

Change-Id: I4a0efdac481a8ed75a847871dbfe686e74a9f113
Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
2016-02-05 20:15:21 -05:00
..
src samples/microkernel: add test for private pipes 2016-02-05 20:15:18 -05:00
Makefile samples/microkernel: add test for private pipes 2016-02-05 20:15:18 -05:00
README.txt Update Title in sample project README.txt files 2016-02-05 20:15:21 -05:00
prj.mdef samples/microkernel: add test for private pipes 2016-02-05 20:15:18 -05:00
prj_arm.conf samples/microkernel: add test for private pipes 2016-02-05 20:15:18 -05:00
prj_x86.conf samples/microkernel: add test for private pipes 2016-02-05 20:15:18 -05:00
testcase.ini samples/microkernel: add test for private pipes 2016-02-05 20:15:18 -05:00

README.txt

Title: Private Pipes

Description:

This test verifies that the microkernel pipe APIs operate as expected.
This also verifies the mechanism to define private pipe object and its usage.

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

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:

Starting pipe tests
===================================================================
Testing task_pipe_put() ...
Testing task_pipe_put_wait() ...
Testing task_pipe_put_wait_timeout() ...
Testing task_pipe_get() ...
Testing task_pipe_get_wait() ...
Testing task_pipe_get_wait_timeout() ...
===================================================================
PROJECT EXECUTION SUCCESSFUL