mirror of
git://sourceware.org/git/lvm2.git
synced 2025-02-01 09:47:48 +03:00
79f2596215
Add tests for the "dmstats report" command: * report * report --count * report --histogram So far the tests just check the command runs as expected when a correctly configured stats region exists: validation of output can be added later.
25 lines
743 B
Bash
25 lines
743 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2009-2011 Red Hat, Inc. All rights reserved.
|
|
#
|
|
# This copyrighted material is made available to anyone wishing to use,
|
|
# modify, copy, or redistribute it subject to the terms and conditions
|
|
# of the GNU General Public License v.2.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
. lib/inittest
|
|
|
|
# ensure we can create devices (uses dmsetup, etc)
|
|
aux prepare_devs 1
|
|
|
|
# prepare a stats region with a histogram
|
|
dmstats create --bounds 10ms,20ms,30ms "$dev1"
|
|
|
|
# basic dmstats report commands
|
|
dmstats report
|
|
dmstats report --count 1
|
|
dmstats report --histogram
|
|
|