mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
15 lines
247 B
Bash
Executable File
15 lines
247 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Runs the metaperf metadata micro-benchmark.
|
|
# Use 1000 files, 10 iterations.
|
|
#
|
|
|
|
. $here/common.metaperf
|
|
|
|
if [ $# -gt 0 ]; then
|
|
_format_header
|
|
exit 0
|
|
fi
|
|
|
|
$here/src/metaperf -d . -i 10 -n 1000 -l15 $allops | _format_metaperf
|