diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-09-10 22:34:54 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-09-10 22:34:54 +0300 |
commit | e2e9980627810fe0ee2b8f119bcf651f0f318a8a (patch) | |
tree | 686898756925aa02c3ef3be45bcfe8eb10fd4abb /tests/backwards_compatibility/decode_legacy.c | |
parent | 0bbcb7b367998063637ee35c5d13716492cbf6a3 (diff) |
Move the rest of the tests to scons
Diffstat (limited to 'tests/backwards_compatibility/decode_legacy.c')
-rw-r--r-- | tests/backwards_compatibility/decode_legacy.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/backwards_compatibility/decode_legacy.c b/tests/backwards_compatibility/decode_legacy.c index b74172fd..315b16ef 100644 --- a/tests/backwards_compatibility/decode_legacy.c +++ b/tests/backwards_compatibility/decode_legacy.c @@ -1,16 +1,16 @@ /* Tests the decoding of all types. - * This is a backwards-compatibility test, using bc_alltypes.pb.h. - * It is similar to test_decode3, but duplicated in order to allow - * test_decode3 to test any new features introduced later. + * This is a backwards-compatibility test, using alltypes_legacy.h. + * It is similar to decode_alltypes, but duplicated in order to allow + * decode_alltypes to test any new features introduced later. * - * Run e.g. ./bc_encode | ./bc_decode + * Run e.g. ./encode_legacy | ./decode_legacy */ #include <stdio.h> #include <string.h> #include <stdlib.h> #include <pb_decode.h> -#include "bc_alltypes.pb.h" +#include "alltypes_legacy.h" #define TEST(x) if (!(x)) { \ printf("Test " #x " failed.\n"); \ |