mirror of https://gitee.com/openkylin/libvirt.git
tests: Remove remnants of removing the fake emulator output
Coverity determined that 'emulator' could no longer be set and determined the code was dead. Looking through the history, I discovered commit-ided769e18
removed code originally added by commit-id9237e955
and further modified by commit-id6a7e7c4f
.
This commit is contained in:
parent
aafe41971c
commit
5a4af2a7d6
|
@ -91,7 +91,6 @@ static int testCompareXMLToArgvFiles(const char *xml,
|
|||
virDomainChrSourceDef monitor_chr;
|
||||
virConnectPtr conn;
|
||||
char *log = NULL;
|
||||
char *emulator = NULL;
|
||||
virCommandPtr cmd = NULL;
|
||||
|
||||
if (!(conn = virGetConnect()))
|
||||
|
@ -173,15 +172,6 @@ static int testCompareXMLToArgvFiles(const char *xml,
|
|||
if (!(actualargv = virCommandToString(cmd)))
|
||||
goto out;
|
||||
|
||||
if (emulator) {
|
||||
/* Skip the abs_srcdir portion of replacement emulator. */
|
||||
char *start_skip = strstr(actualargv, abs_srcdir);
|
||||
char *end_skip = strstr(actualargv, emulator);
|
||||
if (!start_skip || !end_skip)
|
||||
goto out;
|
||||
memmove(start_skip, end_skip, strlen(end_skip) + 1);
|
||||
}
|
||||
|
||||
len = virtTestLoadFile(cmdline, &expectargv);
|
||||
if (len < 0)
|
||||
goto out;
|
||||
|
@ -203,7 +193,6 @@ static int testCompareXMLToArgvFiles(const char *xml,
|
|||
|
||||
out:
|
||||
VIR_FREE(log);
|
||||
VIR_FREE(emulator);
|
||||
VIR_FREE(expectargv);
|
||||
VIR_FREE(actualargv);
|
||||
virCommandFree(cmd);
|
||||
|
|
Loading…
Reference in New Issue