lib: add test program to canonicalize.c

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2010-10-22 23:38:07 +02:00
parent 88dd06b875
commit 6cfa971e1b
2 changed files with 16 additions and 1 deletions

View file

@ -3,7 +3,7 @@ include $(top_srcdir)/config/include-Makefile.am
AM_CPPFLAGS += -DTEST_PROGRAM
noinst_PROGRAMS = test_blkdev test_ismounted test_wholedisk test_mangle \
test_strtosize test_tt
test_strtosize test_tt test_canonicalize
if LINUX
if HAVE_CPU_SET_T
noinst_PROGRAMS += test_cpuset
@ -19,6 +19,7 @@ if LINUX
test_cpuset_SOURCES = cpuset.c
endif
test_tt_SOURCES = tt.c
test_canonicalize_SOURCES = canonicalize.c
if LINUX
test_blkdev_SOURCES += linux_version.c

View file

@ -189,3 +189,17 @@ canonicalize_path(const char *path)
}
#ifdef TEST_PROGRAM
int main(int argc, char **argv)
{
if (argc < 2) {
fprintf(stderr, "usage: %s <device>\n", argv[0]);
exit(EXIT_FAILURE);
}
fprintf(stdout, "orig: %s\n", argv[1]);
fprintf(stdout, "real: %s\n", canonicalize_path(argv[1]));
exit(EXIT_SUCCESS);
}
#endif