aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/gtdump.c13
-rw-r--r--tests/gtfetch.c16
2 files changed, 22 insertions, 7 deletions
diff --git a/tests/gtdump.c b/tests/gtdump.c
index 927a47c..9e151d9 100644
--- a/tests/gtdump.c
+++ b/tests/gtdump.c
@@ -1,5 +1,5 @@
/* This file is part of GDBM test suite.
- Copyright (C) 2011 Free Software Foundation, Inc.
+ Copyright (C) 2011, 2016 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -83,7 +83,7 @@ main (int argc, char **argv)
while (key.dptr)
{
size_t i;
- datum nextkey = gdbm_nextkey (dbf, key);
+ datum nextkey;
for (i = 0; i < key.dsize && key.dptr[i]; i++)
{
@@ -103,11 +103,18 @@ main (int argc, char **argv)
free (data.dptr);
fputc ('\n', stdout);
-
+
+ nextkey = gdbm_nextkey (dbf, key);
free (key.dptr);
key = nextkey;
}
+ if (gdbm_errno != GDBM_ITEM_NOT_FOUND)
+ {
+ fprintf (stderr, "unexpected error: %s\n", gdbm_strerror (gdbm_errno));
+ exit (1);
+ }
+
gdbm_close (dbf);
exit (0);
}
diff --git a/tests/gtfetch.c b/tests/gtfetch.c
index 0c254b7..63598ee 100644
--- a/tests/gtfetch.c
+++ b/tests/gtfetch.c
@@ -1,5 +1,5 @@
/* This file is part of GDBM test suite.
- Copyright (C) 2011 Free Software Foundation, Inc.
+ Copyright (C) 2011, 2016 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -105,9 +105,17 @@ main (int argc, char **argv)
if (data.dptr == NULL)
{
rc = 2;
- fprintf (stderr, "%s: ", progname);
- print_key (stderr, key, delim);
- fprintf (stderr, ": not found\n");
+ if (gdbm_errno == GDBM_ITEM_NOT_FOUND)
+ {
+ fprintf (stderr, "%s: ", progname);
+ print_key (stderr, key, delim);
+ fprintf (stderr, ": not found\n");
+ }
+ else
+ {
+ fprintf (stderr, "%s: error: %s\n", progname,
+ gdbm_strerror (gdbm_errno));
+ }
continue;
}
if (delim)

Return to:

Send suggestions and report system problems to the System administrator.