xref: /linux/tools/perf/tests/shell/attr.sh (revision 875aec2357cd22d412226e4134d1106248b0eb9d)
1#!/bin/bash
2# Perf attribute expectations test
3# SPDX-License-Identifier: GPL-2.0
4
5err=0
6
7cleanup() {
8  trap - EXIT TERM INT
9}
10
11trap_cleanup() {
12  echo "Unexpected signal in ${FUNCNAME[1]}"
13  cleanup
14  exit 1
15}
16trap trap_cleanup EXIT TERM INT
17
18shelldir=$(dirname "$0")
19perf_path=$(which perf)
20python "${shelldir}"/lib/attr.py -d "${shelldir}"/attr -v -p "$perf_path"
21cleanup
22exit $err
23