commands: fix unmatched installation path of datafiles

Both file01 and unzip01 failed due to unmatched installation
path of datafiles.  It has been broken by:

commit f9a91c164ac52a4c91ff6aa9c156f110d04158d6
Author: Li Wang <liwang@redhat.com>
Date:   Wed May 24 15:18:31 2017 +0800

	tst_tests.sh: set the shell TST_ID automatically

We renamed these testcases to keep the test filenames constistent.

Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
diff --git a/runtest/commands b/runtest/commands
index 682deda..4661643 100644
--- a/runtest/commands
+++ b/runtest/commands
@@ -3,13 +3,13 @@
 ld01 ld01
 ldd01 ldd01
 nm01 nm01
-file01 file_test.sh
+file01 file01.sh
 tar01  tar_tests.sh
 cron cron_tests.sh
 logrotate export TCdat=$LTPROOT/testcases/bin; logrotate_tests.sh
 mail export TCdat=$LTPROOT/testcases/bin; mail_tests.sh
 cpio01 cpio_tests.sh
-unzip01 unzip_tests.sh
+unzip01 unzip01.sh
 gzip01 gzip_tests.sh
 cp01 cp_tests.sh
 ln01 ln_tests.sh
diff --git a/testcases/commands/file/Makefile b/testcases/commands/file/Makefile
index e6257a1..776db32 100644
--- a/testcases/commands/file/Makefile
+++ b/testcases/commands/file/Makefile
@@ -24,6 +24,6 @@
 
 include $(top_srcdir)/include/mk/env_pre.mk
 
-INSTALL_TARGETS		:= file_test.sh
+INSTALL_TARGETS		:= file01.sh
 
 include $(top_srcdir)/include/mk/generic_trunk_target.mk
diff --git a/testcases/commands/file/file_test.sh b/testcases/commands/file/file01.sh
similarity index 96%
rename from testcases/commands/file/file_test.sh
rename to testcases/commands/file/file01.sh
index 1ef59f9..1b253cb 100755
--- a/testcases/commands/file/file_test.sh
+++ b/testcases/commands/file/file01.sh
@@ -91,8 +91,8 @@
 	10) file_test in "ELF .*-bit $TEST_ARCH executable, .*";;
 	11) file_test in.ar "current ar archive";;
 	12) file_test in.tar "tar archive";;
-    	13) file_test in.tar.gz "gzip compressed data, .*";;
-    	14) file_test in.tar.bz2 "bzip2 compressed data, .*";;
+	13) file_test in.tar.gz "gzip compressed data, .*";;
+	14) file_test in.tar.bz2 "bzip2 compressed data, .*";;
 	15) file_test in.src.rpm "RPM v3 src" "RPM v3.0 src";;
 	16) file_test in.jpg "JPEG image data";;
 	17) file_test in.png "PNG image data";;
diff --git a/testcases/commands/unzip/Makefile b/testcases/commands/unzip/Makefile
index fdebbce..72ac803 100644
--- a/testcases/commands/unzip/Makefile
+++ b/testcases/commands/unzip/Makefile
@@ -24,6 +24,6 @@
 
 include $(top_srcdir)/include/mk/env_pre.mk
 
-INSTALL_TARGETS		:= unzip_tests.sh
+INSTALL_TARGETS		:= unzip01.sh
 
 include $(top_srcdir)/include/mk/generic_trunk_target.mk
diff --git a/testcases/commands/unzip/unzip_tests.sh b/testcases/commands/unzip/unzip01.sh
similarity index 100%
rename from testcases/commands/unzip/unzip_tests.sh
rename to testcases/commands/unzip/unzip01.sh