Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable XFSTESTS #20

Merged
merged 27 commits into from
Mar 20, 2021
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
cbf9d61
Try turning on the xfstest job
donporter Feb 4, 2021
75aba4c
And the docker file
donporter Feb 4, 2021
79088a4
Copy the Linux source
donporter Feb 5, 2021
30ac125
Debug
donporter Feb 5, 2021
cae5718
Fixes
donporter Feb 5, 2021
a3d8f8f
Import updates to the script, including some hacks to the testing env…
donporter Feb 9, 2021
e308c56
Import more missing scripts/fixes
donporter Feb 9, 2021
cb62f6e
Add debug target to makefile
donporter Feb 9, 2021
a5959ea
Debug
donporter Feb 10, 2021
6e87985
Debug
donporter Feb 10, 2021
44aa556
Debug
donporter Feb 10, 2021
6b522eb
Merge branch 'master' into don/xfstest
donporter Mar 16, 2021
b924b2e
Import mount argument changes needed for xfstests to work 1/2
donporter Mar 16, 2021
16be710
Import mount argument changes needed for xfstests to work 2/2
donporter Mar 16, 2021
31d530e
Build fix
donporter Mar 17, 2021
d5533fa
Build fix
donporter Mar 17, 2021
55533a3
Build fix
donporter Mar 17, 2021
f8e255c
Script debug
donporter Mar 18, 2021
24a321d
A bit more debug
donporter Mar 18, 2021
10b952f
Correct mount options
donporter Mar 18, 2021
14d222c
Remove and restore the loopback device before/after fsck in xfstests.
donporter Mar 18, 2021
02fecd8
Remove debug clutter
donporter Mar 18, 2021
fcd3206
Remove a bit more debugging cruft
donporter Mar 18, 2021
cae56a2
Get proper versions of ftfs files for xfstest
donporter Mar 18, 2021
6c0628c
Address review feedback
donporter Mar 18, 2021
782c893
More review comments
donporter Mar 18, 2021
28f093f
Put back the cp so we get pthread_config_union.h
donporter Mar 19, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
A bit more debug
  • Loading branch information
donporter committed Mar 18, 2021
commit 24a321d56a0fd1600aa43cf899527bfd2127cea3
6 changes: 6 additions & 0 deletions benchmarks/clear-fs-caches.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
#!/bin/bash

set -x

DIR="${BASH_SOURCE%/*}"
if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi

echo "Dir is $DIR"

. "$DIR/fs-info.sh"
echo "Dir is $DIR"
. "$DIR/.rootcheck"
echo "Dir is $DIR"

sync
echo 3 > /proc/sys/vm/drop_caches # 1 frees pagecache
Expand Down