#!/bin/bash # Copyright 2017 Intel Corporation. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # VSPERF code checker PYLINT="pylint" PYLINT_RC='pylintrc' PYLINT_RATING_GATE="10" PYLINT_RATING_MIN=$PYLINT_RATING_GATE FILE_REGEX="(^vsperf|\.py)$" FILE_LIST="/tmp/vsperf_check_list.txt" BC=`which bc` # print usage if requested function usage() { cat </dev/null ; then echo "$PYLINT is not available, thus check can't be executed" exit 1 fi # check if we were run within vsperf directory if [ ! -x ./vsperf 2> /dev/null ] ; then echo "`basename $0` must be run from vsperf root directory" exit 2 fi # get list of excluded modules EXCLUDED_MODULES=`grep "^ *EXCLUDE_MODULES" conf/00_common.conf | tr '"' "'"` # get list of files to be checked rm $FILE_LIST &> /dev/null if [ "x$1" == "x-m" -o "x$1" == "x--modified" ] ; then # check of modified files req