refactor: Update Test Status Enum and Compiler Options

- Changed the enum values in GetTestStatusResponse from STATUS_* to TEST_STATUS_* for consistency and clarity.
- Updated corresponding references in imgui_test_harness_service.cc and gui_automation_client.cc to reflect the new enum naming.
- Added /EHsc compiler option in CMakeLists.txt for MSVC to enable C++ exception handling.
This commit is contained in:
scawful
2025-10-10 10:55:28 -04:00
parent b64ef74b10
commit b2701c8cec
4 changed files with 20 additions and 19 deletions

View File

@@ -159,12 +159,12 @@ message GetTestStatusRequest {
message GetTestStatusResponse {
enum TestStatus {
STATUS_UNSPECIFIED = 0; // Test ID not found or unspecified
STATUS_QUEUED = 1; // Waiting to execute
STATUS_RUNNING = 2; // Currently executing
STATUS_PASSED = 3; // Completed successfully
STATUS_FAILED = 4; // Assertion failed or error
STATUS_TIMEOUT = 5; // Exceeded timeout
TEST_STATUS_UNSPECIFIED = 0; // Test ID not found or unspecified
TEST_STATUS_QUEUED = 1; // Waiting to execute
TEST_STATUS_RUNNING = 2; // Currently executing
TEST_STATUS_PASSED = 3; // Completed successfully
TEST_STATUS_FAILED = 4; // Assertion failed or error
TEST_STATUS_TIMEOUT = 5; // Exceeded timeout
}
TestStatus status = 1;