2015-08-15 02:13:25 +08:00
|
|
|
Title: Pipe APIs
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
Description:
|
|
|
|
|
|
|
|
This test verifies that the microkernel pipe APIs operate as expected.
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Building and Running Project:
|
|
|
|
|
|
|
|
This microkernel project outputs to the console. It can be built and executed
|
|
|
|
on QEMU as follows:
|
|
|
|
|
2015-06-06 09:48:58 +08:00
|
|
|
make qemu
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
2015-06-01 22:30:09 +08:00
|
|
|
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
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
2015-04-11 07:44:37 +08:00
|
|
|
Sample Output:
|
|
|
|
|
|
|
|
Starting pipe tests
|
|
|
|
===================================================================
|
2015-12-05 02:54:01 +08:00
|
|
|
Testing task_pipe_put(TICKS_NONE) ...
|
|
|
|
Testing task_pipe_put(TICKS_UNLIMITED) ...
|
|
|
|
Testing task_pipe_put(timeout) ...
|
2015-12-05 03:32:06 +08:00
|
|
|
Testing task_pipe_get(TICKS_NONE) ...
|
|
|
|
Testing task_pipe_get(TICKS_UNLIMITED) ...
|
|
|
|
Testing task_pipe_get(timeout) ...
|
2015-04-11 07:44:37 +08:00
|
|
|
===================================================================
|
2015-06-05 20:24:47 +08:00
|
|
|
PROJECT EXECUTION SUCCESSFUL
|