• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

edhoc_integration_tests/11-Mar-2024-741398

mocks/11-Mar-2024-1815

oscore_integration_tests/11-Mar-2024-1,145761

oscore_unit_tests/11-Mar-2024-2,4591,715

CMakeLists.txtD11-Mar-20243 KiB9983

README.MDD11-Mar-2024474 2317

entropy.cD11-Mar-2024960 5324

main.cD11-Mar-20245.6 KiB19779

oscore_tests.hD11-Mar-20242.6 KiB7150

prj.confD11-Mar-2024192 126

README.MD

1# Tests
2
3This folder contains tests for uoscore and uedhoc. The tests can be executed on an embedded board, e.g., nrf51dk and/or a Linux host. The tests use Zephyr OS for building.
4
5### How to run:
6
7### Run tests on a Linux host
8```bash
9cd test/
10source <path>/zephyr-env.sh
11rm -rf build/; west build -b=native_posix
12west build -t run
13```
14
15### Run on an embedded board
16```bash
17cd test/
18source <path>/zephyr-env.sh
19rm -rf build/; west build -b=<board_name>
20west flash
21```
22
23