mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
3b4d3819ec
Fixes:87b2d44026
("selftests: add memfd/sealing page-pinning tests") Fixes:2bf9e0ab08
("locking/static_keys: Provide a selftest") Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
15 lines
166 B
Bash
Executable File
15 lines
166 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -d "./mnt" ; then
|
|
fusermount -u ./mnt
|
|
rmdir ./mnt
|
|
fi
|
|
|
|
set -e
|
|
|
|
mkdir mnt
|
|
./fuse_mnt ./mnt
|
|
./fuse_test ./mnt/memfd
|
|
fusermount -u ./mnt
|
|
rmdir ./mnt
|