mirror of
https://github.com/eclipse/wakaama.git
synced 2025-05-08 23:31:37 +08:00

The same tests are compiled with different defines to make sure that combinations of different configurations work properly.
28 lines
501 B
Plaintext
28 lines
501 B
Plaintext
with section("format"):
|
|
# Same as for our C code
|
|
line_width = 120
|
|
tab_size = 4
|
|
|
|
# Smaller diffs
|
|
dangle_parens = True
|
|
|
|
# Settling cross platform disputes
|
|
line_ending = 'unix'
|
|
|
|
# Format keywords consistently
|
|
keyword_case = 'upper'
|
|
|
|
with section("markup"):
|
|
# What character to use for bulleted lists
|
|
bullet_char = '-'
|
|
|
|
additional_commands = {
|
|
"add_test_variant": {
|
|
"kwargs": {
|
|
"TARGET_NAME": '*',
|
|
"SOURCE_FILES": '*',
|
|
"COMPILE_DEFINITIONS": '*',
|
|
}
|
|
}
|
|
}
|