mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
15 lines
250 B
Bash
15 lines
250 B
Bash
|
|
#!/bin/sh
|
||
|
|
#
|
||
|
|
# Runs the metaperf metadata micro-benchmark.
|
||
|
|
# Use 1 file, 1 iteration. (worst case)
|
||
|
|
#
|
||
|
|
|
||
|
|
. $here/common.metaperf
|
||
|
|
|
||
|
|
if [ $# -gt 0 ]; then
|
||
|
|
_format_header
|
||
|
|
exit 0
|
||
|
|
fi
|
||
|
|
|
||
|
|
$here/src/metaperf -d . -i 1 -n 1 -l15 $allops | _format_metaperf
|