From f30d66f01d182c006188d3ab158f26b42e5e2e70 Mon Sep 17 00:00:00 2001 From: lahiker42 Date: Sun, 25 Jan 2009 14:19:46 +0000 Subject: [PATCH] git-svn-id: https://protobuf-c.googlecode.com/svn/trunk@120 00440858-1255-0410-a3e6-75ea37f81c3a --- src/test/README | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/test/README diff --git a/src/test/README b/src/test/README new file mode 100644 index 0000000..80ecf5d --- /dev/null +++ b/src/test/README @@ -0,0 +1,28 @@ +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-generated-code + test.proto Protobuf declarations for the simple test. + test-generated-code.c Actual test code. + test-generated-code Test executable. + generated-code/test.pb-c.h Protobuf-C generated code based on test.proto + generated-code/test.pb-c.c Protobuf-C generated code based on test.proto + +test-generated-code2 + test-full.proto + ..