blob: 1c3ef0db41901d3b329345b236e33d21f2636e54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
There are two tests.
"test-generated-code" is a simple test that can easily be adapted.
"test-generated-code2" is a comprehensive test.
--
If you have a quick problem, hack at "test-generated-code";
but i don't want that file to be too hard to navigate,
so you must eventually add a test to "test-generated-code2".
I appreciate additional test cases!
Please submit them as issues in the tracking system, or email me.
--
Here are the files involved in each test:
test.proto Protobuf declarations for the simple test.
test.pb-c.c Protobuf-C generated code based on test.proto
test.pb-c.h Protobuf-C generated code based on test.proto
test-full.proto Protobuf declarations for the exhaustive test.
test-full.pb-c.c Protobuf-C generated code based on test-full.proto
test-full.pb-c.h Protobuf-C generated code based on test-full.proto
test-full.pb.cc Protobuf (C++) generated code based on test-full.proto
test-full.pb.h Protobuf (C++) generated code based on test-full.proto
generated-code/
test-generated-code.c Actual test code.
test-generated-code Test executable.
generated-code2/
cxx-generate-packed-data.cc C++ code to generated data to compare with C.
cxx-generate-packed-data Program whichs generates data (using C++ api)
test-full-cxx-output.inc Output of cxx-generate-packed-data.
test-generated-code2.c Actual test code.
test-generated-code2 Test executable.
|