Tests: abort dwarf test on open() failure
[babeltrace.git] / tests / lib / test_dwarf.c
CommitLineData
c3a1997e
AB
1/*
2 * test_dwarf.c
3 *
4 * Babeltrace bt_dwarf (DWARF utilities) tests
5 *
6 * Copyright (c) 2015 EfficiOS Inc. and Linux Foundation
7 * Copyright (c) 2015 Antoine Busque <abusque@efficios.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; under version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23#include <fcntl.h>
24#include <stdlib.h>
25#include <stdint.h>
26#include <string.h>
27#include <unistd.h>
28#include <babeltrace/dwarf.h>
29#include "tap/tap.h"
30
31#define NR_TESTS 15
32
33static
34void test_bt_dwarf(const char *data_dir)
35{
36 int fd, ret, tag;
37 char path[PATH_MAX];
38 char *die_name = NULL;
39 struct bt_dwarf_cu *cu = NULL;
40 struct bt_dwarf_die *die = NULL;
41 Dwarf *dwarf_info = NULL;
42
a1a328b0 43 snprintf(path, PATH_MAX, "%s/libhello_so", data_dir);
c3a1997e
AB
44
45 fd = open(path, O_RDONLY);
46 ok(fd >= 0, "Open DWARF file %s", path);
8ad96827
JG
47 if (fd < 0) {
48 exit(EXIT_FAILURE);
49 }
c3a1997e
AB
50 dwarf_info = dwarf_begin(fd, DWARF_C_READ);
51 ok(dwarf_info != NULL, "dwarf_begin successful");
52 cu = bt_dwarf_cu_create(dwarf_info);
53 ok(cu != NULL, "bt_dwarf_cu_create successful");
54 ret = bt_dwarf_cu_next(cu);
55 ok(ret == 0, "bt_dwarf_cu_next successful");
56 die = bt_dwarf_die_create(cu);
57 ok(die != NULL, "bt_dwarf_die_create successful");
58 /*
59 * Test bt_dwarf_die_next twice, as the code path is different
60 * for DIEs at depth 0 (just created) and other depths.
61 */
62 ret = bt_dwarf_die_next(die);
63 ok(ret == 0, "bt_dwarf_die_next from root DIE successful");
64 ok(die->depth == 1,
65 "bt_dwarf_die_next from root DIE - correct depth value");
66 ret = bt_dwarf_die_next(die);
67 ok(ret == 0,
68 "bt_dwarf_die_next from non-root DIE successful");
69 ok(die->depth == 1,
70 "bt_dwarf_die_next from non-root DIE - correct depth value");
71
72 /* Reset DIE to test dwarf_child */
73 bt_dwarf_die_destroy(die);
74 die = bt_dwarf_die_create(cu);
75
76 ret = bt_dwarf_die_child(die);
77 ok(ret == 0, "bt_dwarf_die_child successful");
78 ok(die->depth == 1, "bt_dwarf_die_child - correct depth value");
79
80 ret = bt_dwarf_die_get_tag(die, &tag);
81 ok(ret == 0, "bt_dwarf_die_get_tag successful");
82 ok(tag == DW_TAG_typedef, "bt_dwarf_die_get_tag - correct tag value");
83 ret = bt_dwarf_die_get_name(die, &die_name);
84 ok(ret == 0, "bt_dwarf_die_get_name successful");
85 ok(strcmp(die_name, "size_t") == 0,
86 "bt_dwarf_die_get_name - correct name value");
87
88 bt_dwarf_die_destroy(die);
89 bt_dwarf_cu_destroy(cu);
90 dwarf_end(dwarf_info);
91 free(die_name);
92 close(fd);
93}
94
95int main(int argc, char **argv)
96{
97 const char *data_dir;
98
99 plan_tests(NR_TESTS);
100
101 if (argc != 2) {
102 return EXIT_FAILURE;
103 } else {
104 data_dir = argv[1];
105 }
106
107 test_bt_dwarf(data_dir);
108
109 return EXIT_SUCCESS;
110}
This page took 0.026544 seconds and 4 git commands to generate.