Failures with exelib.exp testcase (was Re: minutes 2010-08-19)

K.Prasad prasad@linux.vnet.ibm.com
Tue Jan 18 13:09:00 GMT 2011


[Copying the systemtap community about an issue seen with uprobes based
testcases.....]

On Mon, Jan 17, 2011 at 04:32:36PM +0100, Mark Wielaard wrote:
> On Mon, 2011-01-17 at 20:24 +0530, K.Prasad wrote:
> > Upon running a "make RUNTESTFLAGS='exelib.exp' check", the following
> > testcases fail:
> > 
> > Running /home/prasadkr/systemtap/testsuite/systemtap.exelib/exelib.exp
> > ...
> > FAIL: uprobeslibgcc-O3default-prelink-debug prelink ./libuprobeslibgcc-O3default-prelink-debug.so
> > FAIL: uprobeslibgcc-O3default-prelink-sep-debug prelink ./libuprobeslibgcc-O3default-prelink-sep-debug.so
> > FAIL: uprobeslibgcc-O3default-prelink-sep-debug-after prelink ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so
> 
> These indicate that the prelink step failed. Could you look in the
> systemtap.log file to see why?
> 

The prelink package was missing before and upon installation, it
appears that the "make RUNTESTFLAGS='exelib.exp' installcheck" is
failing because of unmatched symbol names....(a snippet of 
systemtap.log pasted below)

print_ustack exe 1^M
 0x00000000100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe]^M

I also happen to find that the backtrace doesn't contain any symbol
beyond the top of the stack, which probably indicates that the frame
pointer information for full stack unwinding is missing in which case
implementation of dwarf unwinding may be required. Kindly let us know
if this is the case.

On the other hand, probing a simple helloworld.c program also results in
similar output

#include <stdio.h>

__attribute__((noinline))
void print_hw()
{
	printf("Hello world\n");
}

int main()
{
	print_hw();
	return 0;
}

# stap -k -e 'probe process("/home/prasadkr/helloworld").function("print_hw") { printf("0x%x : %s\n", uaddr(), usymdata(uaddr())) }' -c ./helloworld
Hello world
0x10000530 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x350 [/home/prasadkr/helloworld]
Keeping temporary directory "/tmp/stapQw4jDx"

However, it looks like the corresponding stap-symbols.h appears fine
(with the function names intact), so it is not clear where the problem
lies (whether the issue is insufficient unwind information or incorrect
symbol names or both). I've attached the same for your reference.

> 
> This looks like the address is off. We would expect something that
> contains "print_hw" in the name. Could you try if the basic probe
> address and symbol resolution works? What does the following give?
> 
> $ stap -k -e 'probe process("./helloworld").function("print_hw")
>                { printf("0x%x : %s\n", uaddr(), usymdata(uaddr())) }' \
>        -c ./helloworld
> 
> That should also give you the symbols/addresses that the translator
> stores in something like /tmp/stapR7QjNW/stap-symbols.h
> Please take a look if those look somewhat sane (the addresses will have
> to be adjusted to runtime load addresses later).
> 
> > I'm also attaching the systemtap.log .sum after collected from the
> > execution of exelib.exp testcase.
> 
> You forgot to attach those.
>

I'm attaching the systemtap.log output obtained after running a "make
RUNTESTFLAGS='exelib.exp' installcheck" now.

Thanks,
K.Prasad
 
-------------- next part --------------
Test Run By root on Tue Jan 18 22:31:46 2011
Native configuration is powerpc64-unknown-linux-gnu

		=== systemtap tests ===

Schedule of variations:
    unix

Running target unix
Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
Using /usr/share/systemtap/testsuite/config/unix.exp as tool-and-target-specific interface file.

Host: Linux llm64.in.ibm.com 2.6.32-71.el6.ppc64 #1 SMP Wed Sep 1 02:56:55 EDT 2010 ppc64 ppc64 ppc64 GNU/Linux
Snapshot: version 1.2/0.148 non-git sources
GCC: 4.4.4 [gcc (GCC) 4.4.4 20100726 (Red Hat 4.4.4-13)]
Distro: Red Hat Enterprise Linux Server release 6.0 (Santiago)

Running /usr/share/systemtap/testsuite/systemtap.exelib/exelib.exp ...
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_lib.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -fPIC -shared  -lm   -o ./libuprobeslibgcc-O3default-debug.so    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_lib.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-debug.so
PASS: uprobeslibgcc-O3default-debug compile uprobes_lib.c
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,.  -lm   -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -lm -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe
PASS: uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug compile uprobes_exe.c
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,.  -lm   -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -lm -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe
PASS: uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug compile uprobes_exe.c
Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe.debug
Executing: objcopy --strip-debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe
Executing: objcopy --add-gnu-debuglink=./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe.debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -fPIE -pie  -lm   -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_exe
PASS: uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug compile uprobes_exe.c
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -fPIE -pie  -lm   -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe
PASS: uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug compile uprobes_exe.c
Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe.debug
Executing: objcopy --strip-debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe
Executing: objcopy --add-gnu-debuglink=./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe.debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_lib.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -fPIC -shared  -lm   -o ./libuprobeslibgcc-O3default-sep-debug.so    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_lib.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-sep-debug.so
PASS: uprobeslibgcc-O3default-sep-debug compile uprobes_lib.c
Executing: objcopy --only-keep-debug ./libuprobeslibgcc-O3default-sep-debug.so ./libuprobeslibgcc-O3default-sep-debug.so.debug
Executing: objcopy --strip-debug ./libuprobeslibgcc-O3default-sep-debug.so
Executing: objcopy --add-gnu-debuglink=./libuprobeslibgcc-O3default-sep-debug.so.debug ./libuprobeslibgcc-O3default-sep-debug.so
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,.  -lm   -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -lm -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_exe
PASS: uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug compile uprobes_exe.c
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,.  -lm   -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -lm -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe
PASS: uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug compile uprobes_exe.c
Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe.debug
Executing: objcopy --strip-debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe
Executing: objcopy --add-gnu-debuglink=./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe.debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -fPIE -pie  -lm   -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_exe
PASS: uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug compile uprobes_exe.c
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -fPIE -pie  -lm   -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe
PASS: uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug compile uprobes_exe.c
Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe.debug
Executing: objcopy --strip-debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe
Executing: objcopy --add-gnu-debuglink=./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe.debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_lib.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -fPIC -shared  -lm   -o ./libuprobeslibgcc-O3default-prelink-debug.so    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_lib.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-prelink-debug.so
PASS: uprobeslibgcc-O3default-prelink-debug compile uprobes_lib.c
Executing: /usr/sbin/prelink -vfNR -r 0x6400000 ./libuprobeslibgcc-O3default-prelink-debug.so
result is 
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,.  -lm   -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. -lm -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_exe
PASS: uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug compile uprobes_exe.c
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,.  -lm   -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. -lm -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe
PASS: uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug compile uprobes_exe.c
Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe.debug
Executing: objcopy --strip-debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe
Executing: objcopy --add-gnu-debuglink=./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe.debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. -fPIE -pie  -lm   -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_exe
PASS: uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug compile uprobes_exe.c
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. -fPIE -pie  -lm   -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe
PASS: uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug compile uprobes_exe.c
Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe.debug
Executing: objcopy --strip-debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe
Executing: objcopy --add-gnu-debuglink=./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe.debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_lib.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -fPIC -shared  -lm   -o ./libuprobeslibgcc-O3default-prelink-sep-debug.so    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_lib.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-prelink-sep-debug.so
PASS: uprobeslibgcc-O3default-prelink-sep-debug compile uprobes_lib.c
Executing: objcopy --only-keep-debug ./libuprobeslibgcc-O3default-prelink-sep-debug.so ./libuprobeslibgcc-O3default-prelink-sep-debug.so.debug
Executing: objcopy --strip-debug ./libuprobeslibgcc-O3default-prelink-sep-debug.so
Executing: objcopy --add-gnu-debuglink=./libuprobeslibgcc-O3default-prelink-sep-debug.so.debug ./libuprobeslibgcc-O3default-prelink-sep-debug.so
Executing: /usr/sbin/prelink -vfNR -r 0x6400000 ./libuprobeslibgcc-O3default-prelink-sep-debug.so
result is 
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpath,.  -lm   -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpath,. -lm -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
PASS: uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug compile uprobes_exe.c
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpath,.  -lm   -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpath,. -lm -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
PASS: uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug compile uprobes_exe.c
Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe.debug
Executing: objcopy --strip-debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
Executing: objcopy --add-gnu-debuglink=./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe.debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpath,. -fPIE -pie  -lm   -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
PASS: uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug compile uprobes_exe.c
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpath,. -fPIE -pie  -lm   -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
PASS: uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug compile uprobes_exe.c
Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe.debug
Executing: objcopy --strip-debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
Executing: objcopy --add-gnu-debuglink=./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe.debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_lib.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -fPIC -shared  -lm   -o ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_lib.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so
PASS: uprobeslibgcc-O3default-prelink-sep-debug-after compile uprobes_lib.c
Executing: /usr/sbin/prelink -vfNR -r 0x6400000 ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so
result is 
Executing: objcopy --only-keep-debug ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so.debug
Executing: objcopy --strip-debug ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so
Executing: objcopy --add-gnu-debuglink=./libuprobeslibgcc-O3default-prelink-sep-debug-after.so.debug ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl,-rpath,.  -lm   -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl,-rpath,. -lm -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
PASS: uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after compile uprobes_exe.c
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl,-rpath,.  -lm   -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl,-rpath,. -lm -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
PASS: uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after compile uprobes_exe.c
Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe.debug
Executing: objcopy --strip-debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
Executing: objcopy --add-gnu-debuglink=./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe.debug ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl,-rpath,. -fPIE -pie  -lm   -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl,-rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
PASS: uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after compile uprobes_exe.c
Executing on host: gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c  -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl,-rpath,. -fPIE -pie  -lm   -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe    (timeout = 300)
spawn -ignore SIGHUP gcc /usr/share/systemtap/testsuite/systemtap.exelib/uprobes_exe.c -I/usr/share/systemtap/testsuite/../includes -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl,-rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
PASS: uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after compile uprobes_exe.c
Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe.debug
Executing: objcopy --strip-debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
Executing: objcopy --add-gnu-debuglink=./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe.debug ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe
main
exe: main=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x00000000100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe]
[0xc000000131417ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ustack exe 1
 0x00000000100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fff8a8d08a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-debug.so]
[0xc000000131417ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fff8a8d08a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug (1)
FAIL: mark-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug (0)
FAIL: uname-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug print (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug main (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe
main
exe: main=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x00000000100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe]
[0xc00000013150bea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ustack exe 1
 0x00000000100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fff994508a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-debug.so]
[0xc00000013150bea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fff994508a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug (1)
FAIL: mark-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug (0)
FAIL: uname-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug print (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug main (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_exe
main
exe: main=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x0000000038320b30 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_exe]
[0xc000000003f1fea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ustack exe 1
 0x0000000038320b30 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fff876708a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-debug.so]
[0xc000000003f1fea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fff876708a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug (1)
FAIL: mark-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug (0)
FAIL: uname-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug print (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug main (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe
main
exe: main=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x0000000045640b30 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe]
[0xc000000139f7fea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ustack exe 1
 0x0000000045640b30 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fff87ef08a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-debug.so]
[0xc000000139f7fea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fff87ef08a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug (1)
FAIL: mark-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug (0)
FAIL: uname-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug print (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug main (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_exe
main
exe: main=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x00000000100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_exe]
[0xc000000003b63ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ustack exe 1
 0x00000000100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fff800508a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-sep-debug.so]
[0xc000000003b63ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fff800508a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-sep-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug (1)
FAIL: mark-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug (0)
FAIL: uname-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug print (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug main (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe
main
exe: main=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x00000000100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe]
[0xc000000136c0fea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ustack exe 1
 0x00000000100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fff9a9108a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-sep-debug.so]
[0xc000000136c0fea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fff9a9108a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-sep-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug (1)
FAIL: mark-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug (0)
FAIL: uname-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug print (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug main (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_exe
main
exe: main=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x000000005e310b40 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_exe]
[0xc000000131503ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ustack exe 1
 0x000000005e310b40 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fff896708a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-sep-debug.so]
[0xc000000131503ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fff896708a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-sep-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug (1)
FAIL: mark-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug (0)
FAIL: uname-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug print (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug main (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe
main
exe: main=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x000000004e7d0b40 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe]
[0xc00000013117fea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ustack exe 1
 0x000000004e7d0b40 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fff7b7508a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-sep-debug.so]
[0xc00000013117fea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fff7b7508a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-sep-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug (1)
FAIL: mark-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug (0)
FAIL: uname-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug print (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug main (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_exe
main
exe: main=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x00000000100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_exe]
[0xc0000000039a3ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ustack exe 1
 0x00000000100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000000064008a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-debug.so]
[0xc0000000039a3ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000000064008a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug (1)
FAIL: mark-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug (0)
FAIL: uname-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug print (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug main (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe
main
exe: main=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x00000000100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe]
[0xc000000003f3fea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ustack exe 1
 0x00000000100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000000064008a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-debug.so]
[0xc000000003f3fea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000000064008a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug (1)
FAIL: mark-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug (0)
FAIL: uname-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug print (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug main (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_exe
main
exe: main=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x000000005d2b0b40 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_exe]
[0xc000000133553ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ustack exe 1
 0x000000005d2b0b40 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fff8b6d08a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-debug.so]
[0xc000000133553ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fff8b6d08a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug (1)
FAIL: mark-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug (0)
FAIL: uname-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug print (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug main (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe
main
exe: main=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x000000002e650b40 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe]
[0xc0000000035ffea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ustack exe 1
 0x000000002e650b40 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fffa97f08a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-debug.so]
[0xc0000000035ffea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fffa97f08a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug (1)
FAIL: mark-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug (0)
FAIL: uname-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug print (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug main (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so -c ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so -c ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
main
exe: main=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x00000000100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]
[0xc00000013355fea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ustack exe 1
 0x00000000100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000000064008a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug.so]
[0xc00000013355fea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000000064008a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (1)
FAIL: mark-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0)
FAIL: uname-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug print (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
main
exe: main=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x00000000100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]
[0xc000000136c0bea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ustack exe 1
 0x00000000100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000000064008a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug.so]
[0xc000000136c0bea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000000064008a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (1)
FAIL: mark-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0)
FAIL: uname-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug print (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
main
exe: main=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x0000000027e20b40 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]
[0xc0000001315dfea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ustack exe 1
 0x0000000027e20b40 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fff7ec508a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug.so]
[0xc0000001315dfea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fff7ec508a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (1)
FAIL: mark-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0)
FAIL: uname-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug print (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe
main
exe: main=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x0000000035be0b40 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]
[0xc0000001331efea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ustack exe 1
 0x0000000035be0b40 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fffacc908a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug.so]
[0xc0000001331efea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fffacc908a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (1)
FAIL: mark-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0)
FAIL: uname-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug print (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main_func (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_main (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so -c ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so -c ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
main
exe: main=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x00000000100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]
[0xc0000001331e7ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ustack exe 1
 0x00000000100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000000064008a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug-after.so]
[0xc0000001331e7ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000000064008a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug-after.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (1)
FAIL: mark-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0)
FAIL: uname-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after print (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main_func (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_main (0)
FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
main
exe: main=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x00000000100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]
[0xc0000001331e7ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
print_ustack exe 1
 0x00000000100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__libc_start_main@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000000064008a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug-after.so]
[0xc0000001331e7ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000000064008a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug-after.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (1)
FAIL: mark-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0)
FAIL: uname-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after print (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main_func (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_main (0)
FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
main
exe: main=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x0000000043ba0b50 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]
[0xc000000131413ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ustack exe 1
 0x0000000043ba0b50 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fffaf0108a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug-after.so]
[0xc000000131413ea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fffaf0108a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug-after.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (1)
FAIL: mark-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0)
FAIL: uname-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after print (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main_func (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_main (0)
FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after
Running: stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
spawn stap /usr/share/systemtap/testsuite/systemtap.exelib/libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe
main
exe: main=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_func: 3
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ubacktrace exe 0
 0x000000002f8a0b50 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]
[0xc0000001329dfea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
main_count: 3
main_func: 2
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
print_ustack exe 1
 0x000000002f8a0b50 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [/usr/share/systemtap/testsuite/uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]
 0x0000000000000002
main_count: 2
main_func: 1
exe: main_func=00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0
main_count: 1
lib_main
lib: lib_main=00000010.plt_call.lib_func+0
lib_func: 3
lib: lib_func=00000010.plt_call.lib_func+0
print_ubacktrace lib 2
 0x00000fffad5708a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug-after.so]
[0xc0000001329dfea8] [0x0000000000000003] 0x0000000000000003 (unreliable)
func_count: 3
lib_func: 2
lib: lib_func=00000010.plt_call.lib_func+0
print_ustack lib 3
 0x00000fffad5708a0 : 00000010.plt_call.lib_func+0+0x158/0x290 [/usr/share/systemtap/testsuite/libuprobeslibgcc-O3default-prelink-sep-debug-after.so]
 0x0000000000000002
func_count: 2
lib_func: 1
lib: lib_func=00000010.plt_call.lib_func+0
func_count: 1
FAIL: lib-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (1)
FAIL: mark-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0)
FAIL: uname-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after print (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main_func (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_main (0)
FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_func (0)
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O3default-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibgcc-O3default-sep-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_uprobeslibgcc-O3default-prelink-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after
sourcing: /usr/share/systemtap/testsuite/systemtap.exelib/cleanup.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after
testcase /usr/share/systemtap/testsuite/systemtap.exelib/exelib.exp completed in 86 seconds

		=== systemtap Summary ===

# of expected passes		25
# of unexpected failures	160
runtest completed at Tue Jan 18 22:33:12 2011
-------------- next part --------------
A non-text attachment was scrubbed...
Name: stap-symbols.h
Type: text/x-chdr
Size: 25878 bytes
Desc: not available
URL: <http://sourceware.org/pipermail/systemtap/attachments/20110118/a1eb6c40/attachment.bin>


More information about the Systemtap mailing list