summaryrefslogtreecommitdiffstats
path: root/tools/perf/tests/shell/record_offcpu.sh
blob: 96e0739f7478ad8a7c3390ddfff3632a582d947c (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/sh
# perf record offcpu profiling tests
# SPDX-License-Identifier: GPL-2.0

set -e

err=0
perfdata=$(mktemp /tmp/__perf_test.perf.data.XXXXX)

cleanup() {
  rm -f ${perfdata}
  rm -f ${perfdata}.old
  trap - exit term int
}

trap_cleanup() {
  cleanup
  exit 1
}
trap trap_cleanup exit term int

test_offcpu() {
  echo "Basic off-cpu test"
  if [ `id -u` != 0 ]
  then
    echo "Basic off-cpu test [Skipped permission]"
    err=2
    return
  fi
  if perf record --off-cpu -o ${perfdata} --quiet true 2>&1 | grep BUILD_BPF_SKEL
  then
    echo "Basic off-cpu test [Skipped missing BPF support]"
    err=2
    return
  fi
  if ! perf record --off-cpu -e dummy -o ${perfdata} sleep 1 2> /dev/null
  then
    echo "Basic off-cpu test [Failed record]"
    err=1
    return
  fi
  if ! perf evlist -i ${perfdata} | grep -q "offcpu-time"
  then
    echo "Basic off-cpu test [Failed record]"
    err=1
    return
  fi
  if ! perf report -i ${perfdata} -q --percent-limit=90 | egrep -q sleep
  then
    echo "Basic off-cpu test [Failed missing output]"
    err=1
    return
  fi
  echo "Basic off-cpu test [Success]"
}

test_offcpu

cleanup
exit $err