zephyr/tests/kernel/test_slist
Luiz Augusto von Dentz e2c1b2b7be tests: test_slist: Add test for sys_slist_insert
Change-Id: I7b478c78050027013f386146bae6198a554f2005
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
2016-04-28 11:41:15 +00:00
..
src tests: test_slist: Add test for sys_slist_insert 2016-04-28 11:41:15 +00:00
Makefile
README.txt tests: test_slist: Add test for sys_slist_insert 2016-04-28 11:41:15 +00:00
prj.conf
testcase.ini

README.txt

Title: Test slist

Description:

A simple application verifying slist API and its functionalities

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

Building and Running Project:

This nanokernel 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 slist test
 - Initializing the list
 - Appending node 1
 - Finding and removing node 1
 - Prepending node 1
 - Removing node 1
 - Appending node 1
 - Prepending node 2
 - Appending node 3
 - Inserting node 4 after node 2
 - Finding and removing node 1
 - Removing node 3
 - Removing node 4
 - Removing node 2
===================================================================
PASS - main.
===================================================================
PROJECT EXECUTION SUCCESSFUL