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

run_fuse_test.sh (204B)


      1#!/bin/sh
      2# SPDX-License-Identifier: GPL-2.0
      3
      4if test -d "./mnt" ; then
      5	fusermount -u ./mnt
      6	rmdir ./mnt
      7fi
      8
      9set -e
     10
     11mkdir mnt
     12./fuse_mnt ./mnt
     13./fuse_test ./mnt/memfd $@
     14fusermount -u ./mnt
     15rmdir ./mnt