mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-03 05:59:07 +00:00
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>
17 lines
228 B
Bash
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
|