diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2014-10-26 12:33:50 +0400 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2014-10-26 12:33:50 +0400 |
commit | 47e6e7c84f008a53061e661f31ae96629bc694ef (patch) | |
tree | 648a07f3b5b9d67ce19b0fd72e8caa1175c98f1a /qa/991 | |
download | pcp-47e6e7c84f008a53061e661f31ae96629bc694ef.tar.gz |
Debian 3.9.10debian/3.9.10debian
Diffstat (limited to 'qa/991')
-rwxr-xr-x | qa/991 | 47 |
1 files changed, 47 insertions, 0 deletions
@@ -0,0 +1,47 @@ +#!/bin/sh +# PCP QA Test No. 991 +# Exercise the pcp-free(1) command using an archive +# +# Copyright (c) 2014 Red Hat. +# + +seq=`basename $0` +echo "QA output created by $seq" + +. ./common.python + +status=1 # failure is the default! +$sudo rm -rf $tmp.* $seq.full +trap "cd $here; rm -rf $tmp.*; exit \$status" 0 1 2 3 15 + +archive="-a $here/src/pcp-free -z" +archive_first="$archive -O +1" +archive_last="$archive -O -0" + +# real QA test starts here +echo && echo === free output, at first sample +pcp $archive_first free + +echo && echo === free output, at last sample +pcp $archive_last free + +echo && echo === free output, bytes +pcp $archive_first free -b + +echo && echo === free output, megabytes +pcp $archive_first free -m + +echo && echo === free output, gigabytes +pcp $archive_first free -g + +echo && echo === free output, totals + in megabytes +pcp $archive_first free -t -m + +echo && echo === free output, compat + low/high detail +pcp $archive_first free -o -l + +echo && echo === free output, multiple samples +pcp $archive_first free -c 2 -s 2.5 + +status=0 +exit |