aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-03-09 14:49:15 +0200
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-03-09 14:49:15 +0200
commit03526471189711f6656dfa074fc6a8fd7f3d340b (patch)
tree12e1969b04909547bf32309cfcc4c9409e24fbbc /tests
parent9b6641ac643af4f301e05421f2b228084dcc8693 (diff)
Implement error message support for the encoder side.
Update issue 7 Status: FixedInGit
Diffstat (limited to 'tests')
-rw-r--r--tests/test_encode1.c1
-rw-r--r--tests/test_encode2.c5
-rw-r--r--tests/test_encode3.c2
3 files changed, 7 insertions, 1 deletions
diff --git a/tests/test_encode1.c b/tests/test_encode1.c
index 2e97829..742c99f 100644
--- a/tests/test_encode1.c
+++ b/tests/test_encode1.c
@@ -27,6 +27,7 @@ int main()
}
else
{
+ fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream));
return 1; /* Failure */
}
}
diff --git a/tests/test_encode2.c b/tests/test_encode2.c
index b1105ce..fd25c6c 100644
--- a/tests/test_encode2.c
+++ b/tests/test_encode2.c
@@ -26,7 +26,12 @@ int main()
/* Now encode it and check if we succeeded. */
if (pb_encode(&stream, Person_fields, &person))
+ {
return 0; /* Success */
+ }
else
+ {
+ fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream));
return 1; /* Failure */
+ }
}
diff --git a/tests/test_encode3.c b/tests/test_encode3.c
index 4f6859a..982ad3c 100644
--- a/tests/test_encode3.c
+++ b/tests/test_encode3.c
@@ -124,7 +124,7 @@ int main(int argc, char **argv)
}
else
{
- fprintf(stderr, "Encoding failed!\n");
+ fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream));
return 1; /* Failure */
}
}