mirror of
https://github.com/ceph/ceph
synced 2025-02-08 19:38:47 +00:00
7 lines
114 B
Bash
Executable File
7 lines
114 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
echo "test large (16MB) dio write"
|
|
dd if=/dev/zero of=foo.big bs=16M count=1 oflag=direct
|
|
|
|
echo OK
|