minor changes and addeed debug tests

This commit is contained in:
Martino Ferrari
2026-07-02 16:27:40 +02:00
parent f2042d624b
commit 2d5ca20ae4
9 changed files with 724 additions and 158 deletions
+11 -1
View File
@@ -31,6 +31,8 @@ void RunValidationTest();
void TestConfigCommands();
void TestGAMSignalTracing();
void TestTreeCommand();
void TestDebugCommands();
void TestDebugConfigAutoRebuild();
int main() {
signal(SIGALRM, timeout_handler);
@@ -90,7 +92,15 @@ int main() {
printf("\n--- Test 7: Custom MARTe Message (MSG) ---\n");
TestMessageCommand();
Sleep::MSec(1000);
printf("\n--- Test 8: FORCE/UNFORCE/BREAK/STEP/STEP_STATUS/VALUE/LS Commands ---\n");
TestDebugCommands();
Sleep::MSec(1000);
printf("\n--- Test 9: CONFIG Auto-Rebuild From Registry ---\n");
TestDebugConfigAutoRebuild();
Sleep::MSec(1000);
printf("\nAll Integration Tests Finished.\n");
return 0;