1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/tests/unittests
Kevin Funk e8141ca5d8 cbor: CBOR implementation for RIOT-OS
This is a malloc-free implementation of the Concise Binary Object
Representation (CBOR) data format for the RIOT-OS.

This implementation mostly stand-alone, and it should be pretty easy to
port to other platforms. We're only using the C STL and some custom
network-related functionaliy which could be easily replaced by depending
on arpa/inet.h.

The CBOR API is straight-forward to use and provides encoding/decoding
functionality for all major C types, such as:
- int
- uint64_t
- int64_t
- float
- double
- char*
- struct tm
- time_t

It is possible to conditionally compile this module via CFLAGS:
- CBOR_NO_SEMANTIC_TAGGING: All semantic-tagging features removed
- CBOR_NO_CTIME: All ctime related features removed
- CBOR_NO_FLOAT: All floating-point related features removed
- CBOR_NO_PRINT: All features depending on printf removed
2014-08-05 19:49:51 +02:00
..
embunit converting tabs to spaces in tests (#1439) 2014-07-31 20:53:32 +02:00
tests-cbor cbor: CBOR implementation for RIOT-OS 2014-08-05 19:49:51 +02:00
tests-core core/priority_queue: add dynamic initializers 2014-08-05 17:57:45 +02:00
tests-lib doc: use lgplv2.1-short license header instead of lgpl-short-riot 2014-07-31 22:57:20 +02:00
tests-timex doc: use lgplv2.1-short license header instead of lgpl-short-riot 2014-07-31 22:57:20 +02:00
doc.txt Implement core unittests 2014-05-15 11:07:11 +02:00
main.c doc: use lgplv2.1-short license header instead of lgpl-short-riot 2014-07-31 22:57:20 +02:00
Makefile cbor: CBOR implementation for RIOT-OS 2014-08-05 19:49:51 +02:00
map.h unittests: separate test suites from main.c 2014-05-14 12:57:52 +02:00
README.md Create unittest application 2014-04-10 15:33:10 +02:00
unittests.h doc: fix most occurences of FU as an author 2014-07-29 17:23:11 +02:00

Unittests

see Wiki