diff options
author | Po-Hsu Lin <po-hsu.lin@canonical.com> | 2019-10-04 12:04:10 +0800 |
---|---|---|
committer | Eryu Guan <guaneryu@gmail.com> | 2019-10-06 01:51:12 +0800 |
commit | 771f879c1a06628492265ded0339c84451f56c56 (patch) | |
tree | ba7972fff9c74effd7ec61f4073fd0cdbab1ac24 /check | |
parent | c0eab1ea2317563d79e4eb849aa464d5c818cd20 (diff) |
check: convert spaces to tabs in help msg
There are some mix use of spaces and tabs in the help message:
$ ./check --help
Usage: ./check [options] [testlist]
check options
-nfs test NFS
-glusterfs test GlusterFS
-cifs test CIFS
-9p test 9p
-overlay test overlay
-pvfs2 test PVFS2
-tmpfs test TMPFS
-ubifs test ubifs
unify them with tabs.
Signed-off-by: Po-Hsu Lin <po-hsu.lin@canonical.com>
Reviewed-by: Eryu Guan <guaneryu@gmail.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
Diffstat (limited to 'check')
-rwxr-xr-x | check | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -52,14 +52,14 @@ usage() echo "Usage: $0 [options] [testlist]"' check options - -nfs test NFS - -glusterfs test GlusterFS - -cifs test CIFS + -nfs test NFS + -glusterfs test GlusterFS + -cifs test CIFS -9p test 9p -overlay test overlay - -pvfs2 test PVFS2 - -tmpfs test TMPFS - -ubifs test ubifs + -pvfs2 test PVFS2 + -tmpfs test TMPFS + -ubifs test ubifs -l line mode diff -udiff show unified diff (default) -n show me, do not run tests |