Skip to content

Commit

Permalink
tests/unit/test-smp-parse: Add 'smp-with-dies' machine type
Browse files Browse the repository at this point in the history
Avoid modifying the MachineClass internals by adding the
'smp-with-dies' machine, which inherits from TYPE_MACHINE.

Reviewed-by: Richard Henderson <[email protected]>
Reviewed-by: Yanan Wang <[email protected]>
Tested-by: Yanan Wang <[email protected]>
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Message-Id: <[email protected]>
  • Loading branch information
philmd committed Dec 31, 2021
1 parent c30bdb0 commit 76b6d4c
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions tests/unit/test-smp-parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,16 @@ static void machine_base_class_init(ObjectClass *oc, void *data)
mc->name = g_strdup(SMP_MACHINE_NAME);
}

static void machine_with_dies_class_init(ObjectClass *oc, void *data)
{
MachineClass *mc = MACHINE_CLASS(oc);

mc->min_cpus = MIN_CPUS;
mc->max_cpus = MAX_CPUS;

mc->smp_props.dies_supported = true;
}

static void test_generic_valid(const void *opaque)
{
const char *machine_type = opaque;
Expand Down Expand Up @@ -548,9 +558,6 @@ static void test_with_dies(const void *opaque)
unsigned int num_dies = 2;
int i;

/* Force the SMP compat properties */
mc->smp_props.dies_supported = true;

for (i = 0; i < ARRAY_SIZE(data_generic_valid); i++) {
*data = data_generic_valid[i];
unsupported_params_init(mc, data);
Expand Down Expand Up @@ -588,9 +595,6 @@ static void test_with_dies(const void *opaque)
smp_parse_test(ms, data, false);
}

/* Restore the SMP compat properties */
mc->smp_props.dies_supported = false;

object_unref(obj);
}

Expand All @@ -602,6 +606,10 @@ static const TypeInfo smp_machine_types[] = {
.class_init = machine_base_class_init,
.class_size = sizeof(MachineClass),
.instance_size = sizeof(MachineState),
}, {
.name = MACHINE_TYPE_NAME("smp-with-dies"),
.parent = TYPE_MACHINE,
.class_init = machine_with_dies_class_init,
}
};

Expand All @@ -620,7 +628,7 @@ int main(int argc, char *argv[])
TYPE_MACHINE,
test_generic_invalid);
g_test_add_data_func("/test-smp-parse/with_dies",
TYPE_MACHINE,
MACHINE_TYPE_NAME("smp-with-dies"),
test_with_dies);

g_test_run();
Expand Down

0 comments on commit 76b6d4c

Please sign in to comment.