mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
31 lines
553 B
Markdown
31 lines
553 B
Markdown
|
Tests for the CongURE TCP ABE implementation
|
||
|
=============================================
|
||
|
|
||
|
This test tests the `congure_abe` implementation.
|
||
|
|
||
|
Usage
|
||
|
-----
|
||
|
|
||
|
The test requires an up-to-date version of `riotctrl` with `rapidjson` support:
|
||
|
|
||
|
```console
|
||
|
$ pip install --upgrade riotctrl[rapidjson]
|
||
|
```
|
||
|
|
||
|
Then simply run the application using:
|
||
|
|
||
|
```console
|
||
|
$ BOARD="<board>" make flash test
|
||
|
```
|
||
|
|
||
|
It can also executed with pytest:
|
||
|
|
||
|
```console
|
||
|
$ pytest tests/01-run.py
|
||
|
```
|
||
|
|
||
|
Expected result
|
||
|
---------------
|
||
|
|
||
|
The application's test script passes without error code.
|