Add rt_running_when_process_exits integration test - #466
Draft
TimoSteuerwaldETAS wants to merge 7 commits into
Draft
Add rt_running_when_process_exits integration test#466TimoSteuerwaldETAS wants to merge 7 commits into
TimoSteuerwaldETAS wants to merge 7 commits into
Conversation
run_target_slow_setup depends directly on slow_setup_sh — a Native, self-terminating component with ready condition Terminated and no dependents. At commit before the Terminated ready-condition is only enforced on dependency edges, so a component with no dependents is treated as ready-when-running: ActivateRunTarget("run_target_slow_setup").Get() returns before slow_setup.sh (which sleep 1 then writes its marker) has finished. The control client then finds the marker file missing → failure. The run_target_reader activation (a Terminated-ready component with a dependent) is the passing contrast case, and it stays green at both revisions.
TimoSteuerwaldETAS
requested a deployment
to
workflow-approval
August 13, 2026 16:21 — with
GitHub Actions
Waiting
TimoSteuerwaldETAS
requested a deployment
to
workflow-approval
August 13, 2026 16:21 — with
GitHub Actions
Waiting
License Check Results🚀 The license check job ran with the Bazel command: bazel run --lockfile_mode=error //:license-checkStatus: Click to expand output |
TimoSteuerwaldETAS
requested a deployment
to
workflow-approval
August 13, 2026 16:27 — with
GitHub Actions
Waiting
TimoSteuerwaldETAS
requested a deployment
to
workflow-approval
August 13, 2026 16:27 — with
GitHub Actions
Waiting
|
The created documentation from the pull request is available at: docu-html |
TimoSteuerwaldETAS
force-pushed
the
feature/rt_running_when_process_exits
branch
from
August 14, 2026 06:47
262e037 to
7da8a06
Compare
TimoSteuerwaldETAS
requested a deployment
to
workflow-approval
August 14, 2026 06:47 — with
GitHub Actions
Waiting
TimoSteuerwaldETAS
requested a deployment
to
workflow-approval
August 14, 2026 06:47 — with
GitHub Actions
Waiting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Part of #317
Verifies that a Run Target becomes ready only once a self-terminating component's process has actually exited, both when the terminated-ready component has a dependent and when it has none.
This test does not cover one requirement alone, but partially covers several requirements.