summaryrefslogtreecommitdiffstats
path: root/tests/helpers
diff options
context:
space:
mode:
authorKarel Zak2007-11-28 12:11:51 +0100
committerKarel Zak2007-11-28 12:11:51 +0100
commit7df454fc9b96944d9cc57f565a1ba1f1373b2f02 (patch)
tree469f2290a667d26bcb3384986b23d11df3c4a8ab /tests/helpers
parentscript: cleanup includes (diff)
downloadkernel-qcow2-util-linux-7df454fc9b96944d9cc57f565a1ba1f1373b2f02.tar.gz
kernel-qcow2-util-linux-7df454fc9b96944d9cc57f565a1ba1f1373b2f02.tar.xz
kernel-qcow2-util-linux-7df454fc9b96944d9cc57f565a1ba1f1373b2f02.zip
tests: rename test_sysinfo, remove tailing white-spaces
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'tests/helpers')
-rw-r--r--tests/helpers/Makefile.am3
-rw-r--r--tests/helpers/test_sysinfo.c (renamed from tests/helpers/mnt_test_sysinfo.c)8
2 files changed, 5 insertions, 6 deletions
diff --git a/tests/helpers/Makefile.am b/tests/helpers/Makefile.am
index 0f28a7f8a..7cf7ff4e0 100644
--- a/tests/helpers/Makefile.am
+++ b/tests/helpers/Makefile.am
@@ -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
diff --git a/tests/helpers/mnt_test_sysinfo.c b/tests/helpers/test_sysinfo.c
index 0e09a35fd..00ee25230 100644
--- a/tests/helpers/mnt_test_sysinfo.c
+++ b/tests/helpers/test_sysinfo.c
@@ -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);
}