cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

test_doc_build.sh (638B)


      1#!/bin/bash
      2# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
      3set -e
      4
      5# Assume script is located under tools/testing/selftests/bpf/. We want to start
      6# build attempts from the top of kernel repository.
      7SCRIPT_REL_PATH=$(realpath $0)
      8SCRIPT_REL_DIR=$(dirname $SCRIPT_REL_PATH)
      9KDIR_ROOT_DIR=$(realpath $SCRIPT_REL_DIR/../../../../)
     10SCRIPT_REL_DIR=$(dirname $(realpath --relative-to=$KDIR_ROOT_DIR $SCRIPT_REL_PATH))
     11cd $KDIR_ROOT_DIR
     12
     13if [ ! -e $PWD/$SCRIPT_REL_DIR/Makefile ]; then
     14	echo -e "skip:    bpftool files not found!\n"
     15	exit 4 # KSFT_SKIP=4
     16fi
     17
     18for tgt in docs docs-clean; do
     19	make -s -C $PWD/$SCRIPT_REL_DIR $tgt;
     20done