summaryrefslogtreecommitdiffstats
path: root/dynamic-layers/meta-python/recipes-devtools/bcc/bcc/ptest_wrapper.sh
blob: 92d015614c81ee43c9d84fe4426420f1a5134ee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# Simple OE specific wrapper for bcc python tests

name=$1
kind=$2
cmd=$3
shift 3

case $kind in
    simple|sudo)
        $cmd "$@"
        ;;
    *)
        echo "Invalid kind $kind of test $name"
        exit 1
esac