diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-02 18:29:37 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-02 18:29:37 +0200 |
commit | b9e1b4435a406a8a27c078ea05dee1240e51704a (patch) | |
tree | 3bd5e75d001d0c1d57710c47375af5c8ba84c26c /CAN-binder/libs/nanopb/tests/regression/issue_242 | |
parent | 0242c26c2f5dc96387bca7efb118364c800f4ee7 (diff) |
Added external libraries from openXC CMake files.
Now libraries are cleanly included and built.
Change-Id: Iaa85639578b55b2da8357bc438426403e2cca8de
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/libs/nanopb/tests/regression/issue_242')
3 files changed, 0 insertions, 79 deletions
diff --git a/CAN-binder/libs/nanopb/tests/regression/issue_242/SConscript b/CAN-binder/libs/nanopb/tests/regression/issue_242/SConscript deleted file mode 100644 index 000063ef..00000000 --- a/CAN-binder/libs/nanopb/tests/regression/issue_242/SConscript +++ /dev/null @@ -1,13 +0,0 @@ -# Regression test for Issue 242: pb_encode does not encode tag for -# extension fields that is all zeros -Import('env') - -env.NanopbProto('zero_value') - -p = env.Program(["zero_value.c", - "zero_value.pb.c", - "$COMMON/pb_decode.o", - "$COMMON/pb_encode.o", - "$COMMON/pb_common.o"]) -env.RunTest(p) - diff --git a/CAN-binder/libs/nanopb/tests/regression/issue_242/zero_value.c b/CAN-binder/libs/nanopb/tests/regression/issue_242/zero_value.c deleted file mode 100644 index b3d96b7a..00000000 --- a/CAN-binder/libs/nanopb/tests/regression/issue_242/zero_value.c +++ /dev/null @@ -1,51 +0,0 @@ -#include <unittests.h> -#include <pb_encode.h> -#include <pb_decode.h> -#include <string.h> -#include "zero_value.pb.h" - -int main() -{ - int status = 0; - - COMMENT("Test extension fields with zero values"); - { - uint8_t buffer[256] = {0}; - pb_ostream_t ostream; - int32_t value = 0; - Extendable source = {0}; - - pb_extension_t source_ext = {0}; - source_ext.type = &opt_int32; - source_ext.dest = &value; - source.extensions = &source_ext; - - ostream = pb_ostream_from_buffer(buffer, sizeof(buffer)); - TEST(pb_encode(&ostream, Extendable_fields, &source)); - - TEST(ostream.bytes_written == 2); - TEST(memcmp(buffer, "\x58\x00", 2) == 0); - } - - /* Note: There never was a bug here, but this check is included - * in the regression test because the logic is closely related. - */ - COMMENT("Test pointer fields with zero values"); - { - uint8_t buffer[256] = {0}; - pb_ostream_t ostream; - int32_t value = 0; - PointerMessage source = {0}; - - source.opt_int32 = &value; - - ostream = pb_ostream_from_buffer(buffer, sizeof(buffer)); - TEST(pb_encode(&ostream, PointerMessage_fields, &source)); - - TEST(ostream.bytes_written == 2); - TEST(memcmp(buffer, "\x58\x00", 2) == 0); - } - - return status; -} - diff --git a/CAN-binder/libs/nanopb/tests/regression/issue_242/zero_value.proto b/CAN-binder/libs/nanopb/tests/regression/issue_242/zero_value.proto deleted file mode 100644 index 020a39a5..00000000 --- a/CAN-binder/libs/nanopb/tests/regression/issue_242/zero_value.proto +++ /dev/null @@ -1,15 +0,0 @@ -syntax = "proto2"; -import "nanopb.proto"; - -message Extendable { - extensions 10 to 100; -} - -extend Extendable { - optional int32 opt_int32 = 11; -} - -message PointerMessage { - optional int32 opt_int32 = 11 [(nanopb).type = FT_POINTER]; -} - |