blob: b4d46271a05c6c895cf89549913a9b3f4e47120f [file] [log] [blame]
Petr Machata02c56192011-03-10 01:50:32 +01001/* Copyright (C) 2011 Red Hat, Inc.
Mark Wielaardde2ed972012-06-05 17:15:16 +02002 This file is part of elfutils.
Petr Machata02c56192011-03-10 01:50:32 +01003
Mark Wielaardde2ed972012-06-05 17:15:16 +02004 This file is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
Petr Machata02c56192011-03-10 01:50:32 +01008
Mark Wielaardde2ed972012-06-05 17:15:16 +02009 elfutils is distributed in the hope that it will be useful, but
Petr Machata02c56192011-03-10 01:50:32 +010010 WITHOUT ANY WARRANTY; without even the implied warranty of
Mark Wielaardde2ed972012-06-05 17:15:16 +020011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
Petr Machata02c56192011-03-10 01:50:32 +010013
Mark Wielaardde2ed972012-06-05 17:15:16 +020014 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
Petr Machata02c56192011-03-10 01:50:32 +010016
17#include <config.h>
18
19#include ELFUTILS_HEADER(dw)
20#include <fcntl.h>
21#include <stdio.h>
22#include <string.h>
23#include <assert.h>
24
Roland McGratha7079112011-03-09 18:21:22 -080025int
26main (int argc, char **argv)
Petr Machata02c56192011-03-10 01:50:32 +010027{
28 assert (argc > 1);
29
Roland McGratha7079112011-03-09 18:21:22 -080030 int i = open (argv[1], O_RDONLY);
Petr Machata02c56192011-03-10 01:50:32 +010031 assert (i >= 0);
32
Roland McGratha7079112011-03-09 18:21:22 -080033 Dwarf *dw = dwarf_begin (i, DWARF_C_READ);
Petr Machata02c56192011-03-10 01:50:32 +010034 assert (dw != NULL);
35
36 Dwarf_Die die_mem, *die;
37 die = dwarf_offdie (dw, 11, &die_mem);
38 assert (die == &die_mem);
39 assert (dwarf_tag (die) == 0);
40
41 die = dwarf_offdie (dw, 11, &die_mem);
42 assert (die == &die_mem);
43 assert (dwarf_tag (die) == 0);
44
Mark Wielaarda1372e02015-12-01 15:55:08 +010045 dwarf_end (dw);
Petr Machata02c56192011-03-10 01:50:32 +010046 return 0;
47}