zephyr/samples/microkernel/test/test_prng
Anas Nashif 0db3b1e032 samples: remove duplicate crypto test code
Sample code for crypto library was duplicated and run twice.
Make the samples/crypto/ directory the contain of the source
and add the test logic and makefiles to the samples/microkernel/tests
referencing the source in samples/crypto.

Change-Id: I74d34de9351642fc4508e6bedd65e9b34676b01e
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-02-05 20:24:19 -05:00
..
Makefile samples: remove duplicate crypto test code 2016-02-05 20:24:19 -05:00
prj_arm.conf Add initial import of TinyCrypt crypto library and tests 2016-02-05 20:15:36 -05:00
prj_x86.conf Add initial import of TinyCrypt crypto library and tests 2016-02-05 20:15:36 -05:00
prj.mdef Add initial import of TinyCrypt crypto library and tests 2016-02-05 20:15:36 -05:00
README.txt Add initial import of TinyCrypt crypto library and tests 2016-02-05 20:15:36 -05:00
testcase.ini Add initial import of TinyCrypt crypto library and tests 2016-02-05 20:15:36 -05:00

Title: test_prng

Description:

This test verifies that the TinyCrypt PRNG 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:

    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() - Performing HMAC-PRNG tests:
HMAC-PRNG test#1 (init, reseed, generate):
HMAC-PRNG test#1 (init):
===================================================================
PASS - mainloop.
HMAC-PRNG test#1 (reseed):
===================================================================
PASS - mainloop.
HMAC-PRNG test#1 (generate):
===================================================================
PASS - mainloop.
All HMAC tests succeeded!
===================================================================
PASS - mainloop.
===================================================================
PROJECT EXECUTION SUCCESSFUL