mirror of
https://github.com/google/pebble.git
synced 2025-06-11 04:23:10 +00:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
25
third_party/nanopb/tests/io_errors_pointers/SConscript
vendored
Normal file
25
third_party/nanopb/tests/io_errors_pointers/SConscript
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Simulate io errors when encoding and decoding
|
||||
|
||||
Import("env", "malloc_env")
|
||||
|
||||
c = Copy("$TARGET", "$SOURCE")
|
||||
env.Command("alltypes.proto", "#alltypes/alltypes.proto", c)
|
||||
env.Command("io_errors.c", "#io_errors/io_errors.c", c)
|
||||
|
||||
env.NanopbProto(["alltypes", "alltypes.options"])
|
||||
|
||||
ioerr = env.Program(["io_errors.c", "alltypes.pb.c",
|
||||
"$COMMON/pb_encode_with_malloc.o",
|
||||
"$COMMON/pb_decode_with_malloc.o",
|
||||
"$COMMON/pb_common_with_malloc.o",
|
||||
"$COMMON/malloc_wrappers.o"])
|
||||
|
||||
# Run tests under valgrind if available
|
||||
kwargs = {}
|
||||
if env.get("VALGRIND"):
|
||||
kwargs['COMMAND'] = env['VALGRIND']
|
||||
kwargs['ARGS'] = ["-q", "--error-exitcode=99", ioerr[0].abspath]
|
||||
|
||||
env.RunTest("io_errors.output", [ioerr, "$BUILD/alltypes/encode_alltypes.output"], **kwargs)
|
||||
|
||||
|
8
third_party/nanopb/tests/io_errors_pointers/alltypes.options
vendored
Normal file
8
third_party/nanopb/tests/io_errors_pointers/alltypes.options
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Generate all fields as pointers.
|
||||
* type:FT_POINTER
|
||||
*.*fbytes fixed_length:true max_size:4
|
||||
*.*farray fixed_count:true max_count:5
|
||||
*.*farray2 fixed_count:true max_count:3
|
||||
IntSizes.*int8 int_size:IS_8
|
||||
IntSizes.*int16 int_size:IS_16
|
||||
DescriptorSize8 descriptorsize:DS_8
|
Loading…
Add table
Add a link
Reference in a new issue