Khem Raj 1db713b038
bpftrace,bcc: Migrate recipe from meta-clang to meta-oe
These recipes depend on clang, and clang being on core
it is better place for these tools to be in a common
layer for now that is meta-oe

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2025-07-16 08:47:50 -07:00

17 lines
228 B
Bash

#!/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