tests: rename test_sysinfo, remove tailing white-spaces

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2007-11-28 12:11:51 +01:00
parent 2b7ff0d91a
commit 7df454fc9b
3 changed files with 6 additions and 7 deletions

View File

@ -7,7 +7,7 @@ AWK=@AWK@
TS_TESTUSER=${TS_TESTUSER:-"test"}
# helpers
TS_HELPER_SYSINFO="$TS_TOPDIR/helpers/mnt_test_sysinfo"
TS_HELPER_SYSINFO="$TS_TOPDIR/helpers/test_sysinfo"
# external commands
TS_ECMD_BLKID="@BLKID@"

View File

@ -1,7 +1,6 @@
include $(top_srcdir)/config/include-Makefile.am
noinst_PROGRAMS = mnt_test_sysinfo test_blkdev
mnt_test_sysinfo_SOURCES = mnt_test_sysinfo.c
noinst_PROGRAMS = test_sysinfo test_blkdev
test_blkdev_SOURCES = $(top_srcdir)/lib/blkdev.c \
$(top_srcdir)/lib/linux_version.c

View File

@ -79,11 +79,11 @@ hlp_ulong_max32(void)
return 0;
}
mntHlpfnc hlps[] =
mntHlpfnc hlps[] =
{
{ "WORDSIZE", hlp_wordsize },
{ "pagesize", hlp_pagesize },
{ "INT_MAX", hlp_int_max },
{ "INT_MAX", hlp_int_max },
{ "UINT_MAX", hlp_uint_max },
{ "LONG_MAX", hlp_long_max },
{ "ULONG_MAX", hlp_ulong_max },
@ -108,7 +108,7 @@ main(int argc, char **argv)
if (strcmp(argv[1], "--help") == 0 || strcmp(argv[1], "-h") == 0) {
printf("%s <option>\n", argv[0]);
fputs("options:\n", stdout);
for (fn = hlps; fn->name; fn++)
for (fn = hlps; fn->name; fn++)
printf("\t%s\n", fn->name);
exit(EXIT_SUCCESS);
}
@ -120,7 +120,7 @@ main(int argc, char **argv)
}
}
}
exit(re ? EXIT_FAILURE : EXIT_SUCCESS);
}