firmware/extra/nanopb/tests/regression/issue_259/SConscript
Patrick Moessler 0c83634f42 Initial commit
2019-10-13 00:37:11 +02:00

22 lines
648 B
Python

# Check that callback fields inside malloc()ed messages
# are correctly initialized.
Import('env', 'malloc_env')
env.NanopbProto('callback_pointer')
p = malloc_env.Program(["callback_pointer.c",
"callback_pointer.pb.c",
"$COMMON/pb_decode_with_malloc.o",
"$COMMON/pb_common_with_malloc.o",
"$COMMON/malloc_wrappers.o"])
# Run test under valgrind if available
valgrind = env.WhereIs('valgrind')
kwargs = {}
if valgrind:
kwargs['COMMAND'] = valgrind
kwargs['ARGS'] = ["-q", "--error-exitcode=99", p[0].abspath]
env.RunTest(p, **kwargs)