From: Gustavo Sverzut Barbieri Date: Thu, 8 Dec 2011 06:13:44 +0000 (-0200) Subject: test-insmod: print name to test modname_normalize(). X-Git-Tag: v1~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97a3ea9e9d1d6a9646e4dc37d653125dea3d8727;p=thirdparty%2Fkmod.git test-insmod: print name to test modname_normalize(). --- diff --git a/test/test-insmod.c b/test/test-insmod.c index fb585619..4cdb71c5 100644 --- a/test/test-insmod.c +++ b/test/test-insmod.c @@ -34,7 +34,7 @@ int main(int argc, char *argv[]) exit(EXIT_FAILURE); } - printf("Trying insmod '%s'\n", path); + printf("Trying insmod '%s' (%s)\n", kmod_module_get_name(mod), path); err = kmod_module_insert_module(mod, 0); if (err < 0) { fprintf(stderr, "%s\n", strerror(-err));