xfstests: some refinements on "make depend"
[xfstests-dev.git] / common.metaperf
1 ##/bin/bash
2 #
3 # Copyright (c) 2003-2005 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License as
7 # published by the Free Software Foundation.
8 #
9 # This program is distributed in the hope that it would be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write the Free Software Foundation,
16 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 #
18
19 _format_metaperf()
20 {
21     perl -ne 'm/(\S+): (\d+) times, (\d+) file\(s\) namelen (\d+), time = (\S+) sec, ops\/sec=(\S+), usec\/op = (\S+)/ && { $op{$1} = $7 };
22         END { printf "%8.2f,%8.2f,%8.2f,%8.2f,%8.2f,%8.2f,%8.2f,%8.2f\n",
23                 $op{"chown"}, $op{"create"}, $op{"crunlink"}, $op{"linkun"},
24                 $op{"open"}, $op{"rename"}, $op{"stat"}, $op{"readdir"} }'
25 }
26
27 _format_header()
28 {
29     # note: we're reporting only the usec/op field
30     printf "%8s,%8s,%8s,%8s,%8s,%8s,%8s,%8s\n" \
31         chown create crulink linkun open rename stat readdir
32 }
33
34 allops="chown create crunlink linkun open rename stat readdir"