2015-08-15 02:13:25 +08:00
|
|
|
Title: Event APIs
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
Description:
|
|
|
|
|
|
|
|
This test verifies that the microkernel event 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:
|
|
|
|
|
|
|
|
tc_start() - Test Microkernel Events
|
|
|
|
|
|
|
|
Microkernel objects initialized
|
2015-12-08 04:36:25 +08:00
|
|
|
Testing task_event_recv(TICKS_NONE) and task_event_send() ...
|
|
|
|
Testing task_event_recv(TICKS_UNLIMITED) and task_event_send() ...
|
|
|
|
Testing task_event_recv(timeout) and task_event_send() ...
|
2015-04-11 07:44:37 +08:00
|
|
|
Testing isr_event_send() ...
|
|
|
|
Testing fiber_event_send() ...
|
2015-08-11 05:52:20 +08:00
|
|
|
Testing task_event_handler_set() ...
|
2015-04-11 07:44:37 +08:00
|
|
|
===================================================================
|
|
|
|
PASS - RegressionTask.
|
|
|
|
===================================================================
|
2015-06-05 20:24:47 +08:00
|
|
|
PROJECT EXECUTION SUCCESSFUL
|