Skip to content
Snippets Groups Projects

tests: Make test context information nestable.

Merged Elizabeth Figura requested to merge zfigura/vkd3d:pr4 into master
@@ -135,11 +135,11 @@ broken(bool condition)
return condition && vkd3d_test_platform_is_windows();
}
static void vkd3d_test_printf(int line, const char *msg)
static void vkd3d_test_printf(unsigned int line, const char *msg)
{
unsigned int i;
printf("%s:%d: ", vkd3d_test_name, line);
printf("%s:%u: ", vkd3d_test_name, line);
for (i = 0; i < vkd3d_test_state.context_count; ++i)
printf("%s: ", vkd3d_test_state.context[i]);
printf("%s", msg);
Loading