From: Allan Randall Date: Mon, 15 May 2006 15:29:16 +0000 (+0000) Subject: added help when using -h and --help arguments X-Git-Tag: v1.1.0~644 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=f55c95c49d7f813dfb7b9947137b43afc90f92ab;p=xfstests-dev.git added help when using -h and --help arguments Merge of master-melb:xfs-cmds:25939a by kenmcd. added help when using -h and --help arguments --- diff --git a/common b/common index 5ca85415..6b61abf6 100644 --- a/common +++ b/common @@ -102,23 +102,27 @@ s/ .*//p case "$r" in - -\?) # usage + -\? | -h | --help) # usage echo "Usage: $0 [options] [testlist]"' common options -v verbose check options - -xfs test XFS + -xfs test XFS (default) -udf test UDF -nfs test NFS - -g group[,group...] include tests from these groups -l line mode diff [xdiff] -n show me, do not run tests -q quick [deprecated] -T output timestamps - -x group[,group...] exclude tests from these groups -r randomize test order + +testlist options + -g group[,group...] include tests from these groups + -x group[,group...] exclude tests from these groups + NNN include test NNN + NNN-NNN include test range (eg. 012-021) ' exit 0 ;;