diff options
| author | Ulf Hermann <[email protected]> | 2017-04-04 13:09:19 +0200 |
|---|---|---|
| committer | Ulf Hermann <[email protected]> | 2017-05-08 09:26:01 +0000 |
| commit | 264c5144a282af15875435a93c6574efc006b5ac (patch) | |
| tree | 46b31e6fa259a1a1d541a730603ffbd0b640ed45 /tests | |
| parent | cb36af6f6702f0f6b027fa0cf5d580d74cb4398f (diff) | |
Avoid using err() and errx() in tests
fprintf() and exit() do the same job and are portable.
Change-Id: If06533136ea0294c6e70657341c955c67fe63db1
Reviewed-by: Christian Kandeler <[email protected]>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/ChangeLog | 6 | ||||
| -rw-r--r-- | tests/allfcts.c | 47 | ||||
| -rw-r--r-- | tests/buildid.c | 6 | ||||
| -rw-r--r-- | tests/debugaltlink.c | 6 |
4 files changed, 44 insertions, 21 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index 6dab8018..c2619d04 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,5 +1,11 @@ 2017-05-04 Ulf Hermann <[email protected]> + * allfcts.c: Use fprintf and exit rather than err and errx. + * buildid.c: Likewise. + * debugaltlink.c: Likewise. + +2017-05-04 Ulf Hermann <[email protected]> + * elfstrmerge.c: Don't fchmod or fchown the output file if fchmod or fchown don't exist. diff --git a/tests/allfcts.c b/tests/allfcts.c index d3c8d26a..84ac53df 100644 --- a/tests/allfcts.c +++ b/tests/allfcts.c @@ -18,12 +18,14 @@ # include <config.h> #endif -#include <err.h> +#include <errno.h> #include <fcntl.h> #include ELFUTILS_HEADER(dw) #include ELFUTILS_HEADER(dwelf) #include <stdio.h> #include <unistd.h> +#include <stdlib.h> +#include <string.h> static int @@ -47,16 +49,24 @@ setup_alt (Dwarf *main) ssize_t ret = dwelf_dwarf_gnu_debugaltlink (main, &alt_name, &build_id); if (ret == 0) return NULL; - if (ret == -1) - errx (1, "dwelf_dwarf_gnu_debugaltlink: %s", dwarf_errmsg (-1)); + if (ret == -1) { + fprintf (stderr, "allfcts: dwelf_dwarf_gnu_debugaltlink: %s\n", dwarf_errmsg (-1)); + exit(1); + } int fd = open (alt_name, O_RDONLY); - if (fd < 0) - err (1, "open (%s)", alt_name); + if (fd < 0) { + fprintf (stderr, "allfcts: open (%s): %s\n", alt_name, strerror(errno)); + exit(1); + } Dwarf *dbg_alt = dwarf_begin (fd, DWARF_C_READ); - if (dbg_alt == NULL) - errx (1, "dwarf_begin (%s): %s", alt_name, dwarf_errmsg (-1)); - if (elf_cntl (dwarf_getelf (dbg_alt), ELF_C_FDREAD) != 0) - errx (1, "elf_cntl (%s, ELF_C_FDREAD): %s", alt_name, elf_errmsg (-1)); + if (dbg_alt == NULL) { + fprintf (stderr, "dwarf_begin (%s): %s\n", alt_name, dwarf_errmsg (-1)); + exit(1); + } + if (elf_cntl (dwarf_getelf (dbg_alt), ELF_C_FDREAD) != 0) { + fprintf (stderr, "elf_cntl (%s, ELF_C_FDREAD): %s\n", alt_name, elf_errmsg (-1)); + exit(1); + } close (fd); dwarf_setalt (main, dbg_alt); return dbg_alt; @@ -68,8 +78,10 @@ main (int argc, char *argv[]) for (int i = 1; i < argc; ++i) { int fd = open (argv[i], O_RDONLY); - if (fd < 0) - err (1, "open (%s)", argv[i]); + if (fd < 0) { + fprintf (stderr, "open (%s): %s\n", argv[i], strerror(errno)); + exit(1); + } Dwarf *dbg = dwarf_begin (fd, DWARF_C_READ); if (dbg != NULL) @@ -89,9 +101,11 @@ main (int argc, char *argv[]) do { doff = dwarf_getfuncs (die, cb, NULL, doff); - if (dwarf_errno () != 0) - errx (1, "dwarf_getfuncs (%s): %s", - argv[i], dwarf_errmsg (-1)); + if (dwarf_errno () != 0) { + fprintf (stderr, "dwarf_getfuncs (%s): %s\n", + argv[i], dwarf_errmsg (-1)); + exit(1); + } } while (doff != 0); @@ -102,7 +116,10 @@ main (int argc, char *argv[]) dwarf_end (dbg); } else - errx (1, "dwarf_begin (%s): %s", argv[i], dwarf_errmsg (-1)); + { + fprintf (stderr, "dwarf_begin (%s): %s\n", argv[i], dwarf_errmsg (-1)); + exit(1); + } close (fd); } diff --git a/tests/buildid.c b/tests/buildid.c index 87c18773..2d334020 100644 --- a/tests/buildid.c +++ b/tests/buildid.c @@ -18,7 +18,6 @@ #include <config.h> #include <assert.h> #include <inttypes.h> -#include <err.h> #include <errno.h> #include ELFUTILS_HEADER(elf) #include ELFUTILS_HEADER(dwelf) @@ -62,8 +61,9 @@ main (int argc, char *argv[]) printf ("%s: <no NT_GNU_BUILD_ID note>\n", file); break; case -1: - errx (1, "dwelf_elf_gnu_build_id (%s): %s", - file, elf_errmsg (-1)); + fprintf (stderr, "dwelf_elf_gnu_build_id (%s): %s\n", + file, elf_errmsg (-1)); + return 1; default: printf ("%s: build ID: ", file); const unsigned char *p = build_id; diff --git a/tests/debugaltlink.c b/tests/debugaltlink.c index 6d97d500..b470e316 100644 --- a/tests/debugaltlink.c +++ b/tests/debugaltlink.c @@ -18,7 +18,6 @@ #include <config.h> #include <assert.h> #include <inttypes.h> -#include <err.h> #include <errno.h> #include ELFUTILS_HEADER(dw) #include ELFUTILS_HEADER(dwelf) @@ -64,8 +63,9 @@ main (int argc, char *argv[]) printf ("%s: <no .gnu_debugaltlink section>\n", file); break; case -1: - errx (1, "dwelf_dwarf_gnu_debugaltlink (%s): %s", - file, dwarf_errmsg (-1)); + fprintf (stderr, "dwelf_dwarf_gnu_debugaltlink (%s): %s\n", + file, dwarf_errmsg (-1)); + return 1; default: printf ("%s: %s, build ID: ", file, name); const unsigned char *p = build_id; |
