tests: unlink libxl-driver.log

The libxlxml2domconfigtest causes a libxl-driver.log file to be created
which breaks make distchck if libxl is enabled. Delete the log file at
the end of the test.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrangé 2018-05-03 14:26:08 +01:00
parent 01888af0e2
commit 564fdad9cb

View File

@ -211,6 +211,8 @@ mymain(void)
DO_TEST("multiple-ip");
DO_TEST("fullvirt-cpuid");
unlink("libxl-driver.log");
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
}