1#!/bin/sh 2# Simple OE specific wrapper for bcc python tests 3 4name=$1 5kind=$2 6cmd=$3 7shift 3 8 9case $kind in 10 simple|sudo) 11 $cmd "$@" 12 ;; 13 *) 14 echo "Invalid kind $kind of test $name" 15 exit 1 16esac 17