1 /* $NetBSD: t_backtrace.c,v 1.10 2013/08/16 11:57:15 martin Exp $ */
4 * Copyright (c) 2012 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
31 #include <sys/cdefs.h>
32 __RCSID("$NetBSD: t_backtrace.c,v 1.10 2013/08/16 11:57:15 martin Exp $");
35 #include <atf-c/config.h>
42 #define __arraycount(a) (sizeof(a) / sizeof(a[0]))
45 void myfunc3(size_t ncalls
);
46 void myfunc2(size_t ncalls
);
47 void myfunc1(size_t origcalls
, volatile size_t ncalls
);
48 void myfunc(size_t ncalls
);
50 volatile int prevent_inline
;
53 myfunc3(size_t ncalls
)
55 static const char *top
[] = { "myfunc", "atfu_backtrace_fmt_basic_body",
56 "atf_tc_run", "atf_tp_run", "atf_tp_main", "main", "___start" };
57 static bool optional_frame
[] = { false, false, false, true, false,
59 size_t j
, nptrs
, min_frames
, max_frames
;
60 void *buffer
[ncalls
+ 10];
62 __CTASSERT(__arraycount(top
) == __arraycount(optional_frame
));
66 for (j
= 0; j
< __arraycount(optional_frame
); ++j
) {
67 if (!optional_frame
[j
])
71 nptrs
= backtrace(buffer
, __arraycount(buffer
));
72 ATF_REQUIRE(nptrs
>= ncalls
+ 2 + min_frames
);
73 ATF_REQUIRE(nptrs
<= ncalls
+ 2 + max_frames
);
75 strings
= backtrace_symbols_fmt(buffer
, nptrs
, "%n");
77 ATF_CHECK(strings
!= NULL
);
78 ATF_CHECK_STREQ(strings
[0], "myfunc3");
79 ATF_CHECK_STREQ(strings
[1], "myfunc2");
81 for (j
= 2; j
< ncalls
+ 2; j
++)
82 ATF_CHECK_STREQ(strings
[j
], "myfunc1");
84 for (size_t i
= 0; j
< nptrs
; i
++, j
++) {
85 if (optional_frame
[i
] && strcmp(strings
[j
], top
[i
])) {
89 ATF_CHECK_STREQ(strings
[j
], top
[i
]);
99 myfunc2(size_t ncalls
)
108 myfunc1(size_t origcalls
, volatile size_t ncalls
)
111 myfunc1(origcalls
, ncalls
- 1);
120 myfunc(size_t ncalls
)
122 myfunc1(ncalls
, ncalls
);
128 ATF_TC(backtrace_fmt_basic
);
129 ATF_TC_HEAD(backtrace_fmt_basic
, tc
)
131 atf_tc_set_md_var(tc
, "descr", "Test backtrace_fmt(3)");
134 ATF_TC_BODY(backtrace_fmt_basic
, tc
)
145 ATF_TP_ADD_TC(tp
, backtrace_fmt_basic
);
147 return atf_no_error();