backend-infra-engineer: Post v0.3.9-hotfix7 snapshot (build cleanup)

This commit is contained in:
scawful
2025-12-22 00:20:49 +00:00
parent 2934c82b75
commit 5c4cd57ff8
1259 changed files with 239160 additions and 43801 deletions

View File

@@ -0,0 +1,37 @@
#ifndef YAZE_TEST_E2E_EMULATOR_STEPPING_TEST_H
#define YAZE_TEST_E2E_EMULATOR_STEPPING_TEST_H
struct ImGuiTestContext;
namespace yaze {
namespace test {
/**
* @brief Test step-over functionality for subroutine calls.
*/
void E2ETest_EmulatorStepOver(ImGuiTestContext* ctx);
/**
* @brief Test step-out functionality for returning from subroutines.
*/
void E2ETest_EmulatorStepOut(ImGuiTestContext* ctx);
/**
* @brief Test call stack tracking during execution.
*/
void E2ETest_EmulatorCallStackTracking(ImGuiTestContext* ctx);
/**
* @brief Test run-to-address functionality.
*/
void E2ETest_EmulatorRunToAddress(ImGuiTestContext* ctx);
/**
* @brief Test instruction callback for AI-driven monitoring.
*/
void E2ETest_EmulatorInstructionCallback(ImGuiTestContext* ctx);
} // namespace test
} // namespace yaze
#endif // YAZE_TEST_E2E_EMULATOR_STEPPING_TEST_H