diff options
author | Chih-hung Hsieh <chh@google.com> | 2015-09-25 14:51:48 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-09-25 14:51:48 +0000 |
commit | b0121c5547604527aaeea297b54047cd14b234df (patch) | |
tree | 7d9031ee3d5796de4a1825892fc6e04ba6e36ae2 /src/tests/dwarf-getstring.c | |
parent | d03895cf5f8b77c6a85abcd84ea0d80ff56be846 (diff) | |
parent | 5eafdf0f9bfd9a3c5f93414ac16bb399b6da0b7f (diff) | |
download | android_external_elfutils-b0121c5547604527aaeea297b54047cd14b234df.tar.gz android_external_elfutils-b0121c5547604527aaeea297b54047cd14b234df.tar.bz2 android_external_elfutils-b0121c5547604527aaeea297b54047cd14b234df.zip |
Merge "Move files up to match upstream source structure."
Diffstat (limited to 'src/tests/dwarf-getstring.c')
-rw-r--r-- | src/tests/dwarf-getstring.c | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/src/tests/dwarf-getstring.c b/src/tests/dwarf-getstring.c deleted file mode 100644 index b70c2a70..00000000 --- a/src/tests/dwarf-getstring.c +++ /dev/null @@ -1,77 +0,0 @@ -/* Copyright (C) 2011 Red Hat, Inc. - This file is part of elfutils. - Written by Marek Polacek <mpolacek@redhat.com>, 2011. - - This file is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. - - elfutils is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. */ - -#ifdef HAVE_CONFIG_H -# include <config.h> -#endif - -#include ELFUTILS_HEADER(dwfl) -#include <assert.h> -#include <dwarf.h> -#include <fcntl.h> -#include <stdio.h> -#include <unistd.h> - - -int -main (int argc, char *argv[]) -{ - int cnt; - - for (cnt = 1; cnt < argc; ++cnt) - { - Dwarf_Off offset = 0; - size_t len; - - int fd = open64 (argv[cnt], O_RDONLY); - if (fd == -1) - { - printf ("cannot open '%s': %m\n", argv[cnt]); - return 1; - } - - Dwarf *dbg = dwarf_begin (fd, DWARF_C_READ); - if (dbg == NULL) - { - printf ("%s not usable: %s\n", argv[cnt], dwarf_errmsg (-1)); - close (fd); - return 1; - } - - /* Try to use NULL Dwarf object. */ - const char *str = dwarf_getstring (NULL, offset, &len); - assert (str == NULL); - - /* Use insane offset. */ - str = dwarf_getstring (dbg, ~0UL, &len); - assert (str == NULL); - - /* Now do some real work. */ - for (int i = 0; i < 100; ++i) - { - str = dwarf_getstring (dbg, offset, &len); - puts (str); - - /* Advance. */ - offset += len + 1; - } - - close (fd); - } - - return 0; -} |