summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2016-02-18 16:52:37 +0000
committerBryn M. Reeves <bmr@redhat.com>2016-02-25 16:40:59 +0000
commit79f259621542e62a2f9fb5982f473d2bb849b1b5 (patch)
tree97801796333c18ab0ad68b6c646ee76bcdd4c4bb
parent3d3b132d9ac845e31c316ad4b908466bb3837a4d (diff)
downloadlvm2-dev-bmr-dmstats-tests.tar.gz
tests: add simple dmstats report testsdev-bmr-dmstats-tests
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.
-rw-r--r--test/shell/dmstats-report.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/shell/dmstats-report.sh b/test/shell/dmstats-report.sh
new file mode 100644
index 000000000..c36e3ebbe
--- /dev/null
+++ b/test/shell/dmstats-report.sh
@@ -0,0 +1,24 @@
+#!/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
+