xref: /linux/tools/perf/tests/shell/attr.sh (revision 5525aebd4e0c6f7d92ec1cb074218bbcf3d46f13)
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