summaryrefslogtreecommitdiff
path: root/tests/cputest.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cputest.c')
-rw-r--r--tests/cputest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/cputest.c b/tests/cputest.c
index e86cd0b9bc..beb9afabdf 100644
--- a/tests/cputest.c
+++ b/tests/cputest.c
@@ -321,8 +321,8 @@ cpuTestBaseline(const void *arg)
if (!(cpus = cpuTestLoadMultiXML(data->arch, data->name, &ncpus)))
goto cleanup;
- baseline = cpuBaseline(cpus, ncpus, NULL,
- !!(data->flags & VIR_CONNECT_BASELINE_CPU_MIGRATABLE));
+ baseline = virCPUBaseline(cpus, ncpus, NULL,
+ !!(data->flags & VIR_CONNECT_BASELINE_CPU_MIGRATABLE));
if (baseline &&
(data->flags & VIR_CONNECT_BASELINE_CPU_EXPAND_FEATURES) &&
@@ -337,7 +337,7 @@ cpuTestBaseline(const void *arg)
ret = 0;
} else {
VIR_TEST_VERBOSE("\n%-70s... ",
- "cpuBaseline was expected to fail but it succeeded");
+ "virCPUBaseline was expected to fail but it succeeded");
}
goto cleanup;
}