aboutsummaryrefslogtreecommitdiffstats
path: root/tests/strace-k.test
blob: 329f30248f5e2cbdf3436c345c8a7a2f77491e48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh

# Ensure that strace -k works.

. "${srcdir=.}/init.sh"

# strace -k is implemented using /proc/$pid/maps
[ -f /proc/self/maps ] ||
	framework_skip_ '/proc/self/maps is not available'

check_prog sed
check_prog tr

./stack-fcall ||
	fail_ 'stack-fcall failed'

$STRACE -h | grep '^-k' > /dev/null ||
	skip_ 'strace -k is not available'

args="-e getuid -k ./stack-fcall"
$STRACE $args > $LOG 2>&1 || {
	cat $LOG
	fail_ "$STRACE $args failed"
}

expected='getuid f1 f0 main '
result=$(sed -n '1,/(main+0x[a-f0-9]\+) .*/ s/^.*(\([^+]\+\)+0x[a-f0-9]\+) .*/\1/p' $LOG |
	tr '\n' ' ')

test "$result" = "$expected" || {
	cat $LOG
	echo "expected: \"$expected\""
	echo "result: \"$result\""
	fail_ "unexpected output from $STRACE $args"
}

exit 0