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

default_file_splice_read.sh (178B)


      1#!/bin/sh
      2# SPDX-License-Identifier: GPL-2.0
      3n=`./default_file_splice_read </dev/null | wc -c`
      4
      5test "$n" = 0 && exit 0
      6
      7echo "default_file_splice_read broken: leaked $n"
      8exit 1