Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,12 @@ int runTest(
q.get_context());
vkDestroySemaphore(vkCtx.device, vkSem, nullptr);
}

// DEBUG: Print message before cleanup to track where segfault occurs
std::cerr << "DEBUG: About to call cleanupVulkan()..." << std::endl;
cleanupVulkan(vkCtx, imgRes);
std::cerr << "DEBUG: cleanupVulkan() completed successfully" << std::endl;

return passed ? 0 : 1;

} catch (std::exception &e) {
Expand Down
Loading