On 3/26/21 1:36 PM, Claudio Fontana wrote:
+#ifndef CONFIG_TCG
+ {
+ const char *arch = qtest_get_arch();
+ if (strcmp(arch, "arm") == 0 || strcmp(arch, "aarch64") == 0) {
+ goto add_machine_test_done;
+ }
+ }
+#endif /* !CONFIG_TCG */
if (g_test_quick()) {
qtest_add_data_func("device/introspect/concrete/defaults/none",
g_strdup(common_args),
test_device_intro_concrete);
} else {
qtest_cb_for_every_machine(add_machine_test_case, true);
}
+ goto add_machine_test_done;
+ add_machine_test_done:
Likewise with the ifdef and goto ugliness.
r~