tests: back to short test names

With the switch to modules by default, I was getting super long
test output:

TEST: /home/remote/eblake/libvirt/tests/.libs/lt-interfacexml2xmltest

compared to the former:

TEST: interfacexml2xmltest

* tests/testutils.c (virtTestMain): Trim off libtool goop.
This commit is contained in:
Eric Blake 2012-05-24 20:34:16 -06:00
parent d2e30e9851
commit ee40725510

View File

@ -35,6 +35,7 @@
#include "logging.h"
#include "command.h"
#include "virrandom.h"
#include "dirname.h"
#if TEST_OOM_TRACE
# include <execinfo.h>
@ -576,9 +577,9 @@ int virtTestMain(int argc,
if (!abs_srcdir)
exit(EXIT_AM_HARDFAIL);
progname = argv[0];
if (STRPREFIX(progname, "./"))
progname += 2;
progname = last_component(argv[0]);
if (STRPREFIX(progname, "lt-"))
progname += 3;
if (argc > 1) {
fprintf(stderr, "Usage: %s\n", argv[0]);
fputs("effective environment variables:\n"