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