mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-24 14:03:55 +01:00
This adds a simple test applications that runs snprintf on standard format specifiers and compares the output with the expected output. The assumption is that internally every stdio implementation uses the same formatting code for each member of the printf functions family, so testing snprintf only is sufficient.
8 lines
225 B
Makefile
8 lines
225 B
Makefile
include ../Makefile.sys_common
|
|
|
|
# avrlibc's snprintf doesn't support uint64_t / int64_t and even fails
|
|
# to compile due to PRI*64 macros not being defined
|
|
FEATURES_BLACKLIST := arch_avr8
|
|
|
|
include $(RIOTBASE)/Makefile.include
|