mirror of
https://github.com/ceph/ceph
synced 2024-12-19 09:57:05 +00:00
1ec70aa0dd
It turns out that our suites don't exercise fsync, at least not very much (I couldn't find it in all the places I looked for it). This tester was written by Ted T'so and updated by Chris Mason; I just made it work on a smaller dataset (256MB) because 8GB against a small cluster takes more time than we want to wait. Signed-off-by: Greg Farnum <greg@inktank.com>
9 lines
112 B
Bash
Executable File
9 lines
112 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
wget http://ceph.com/qa/fsync-tester.c
|
|
gcc fsync-tester.c -o fsync-tester
|
|
|
|
./fsync-tester
|