[compiler-rt][test] Add REQUIRES: shell to tests with &
with lit internal shell
#102988
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.
This patch adds the
REQUIRES: shell
directive to compiler-rt's fuzzer tests that require full shell functionality when using the lit internal shell. These tests depend on features such as background processes, signal handling, and session management, which are not supported by lit's internal shell. The addition of this directive ensures that these tests are only executed in environments that provide the necessary shell capabilities.Details of the Change:
The following considerations were addressed:
&
): The tests run commands in the background using the&
operator, which allows the shell to execute commands concurrently without waiting for each one to finish. In a standard Unix-like shell, this is a common feature that facilitates multitasking. However, lit's internal shell does not fully support background job control, which can lead to unpredictable behavior or test failures. Without proper handling of background processes, subsequent commands that depend on the status of these processes may not function correctly.kill -SIGUSR1
,kill -SIGUSR2
,kill -SIGINT
): These tests involve sending specific signals likeSIGUSR1
,SIGUSR2
, andSIGINT
to running processes. These signals are used to trigger certain behaviors in the processes, such as pausing, resuming, or terminating. However, lit's internal shell may not handle these signals properly—it might not send the signal correctly, or the process might not respond as it should. This could lead to the test failing, not because the process is incorrect, but because the shell didn't manage the signals as required.setsid
): The tests usesetsid
to create new sessions, detaching processes from their controlling terminal and isolating them into their own process groups. However, the internal shell in lit does not support session management features likesetsid
, this can't correctly isolate and manage processes as required by these tests.Previously, this test was causing an
AttributeError
due to incompatibilities with lit's internal shell. By enforcing the use of an external shell with theREQUIRES: shell
directive, this patch addresses the issue temporarily. This approach fixes the problem for now, and when we later revisit and remove theREQUIRES: shell
directive, we can implement a more robust solution to fully support these features in the internal shell.This change is relevant for enabling the lit internal shell by default, as outlined in [RFC] Enabling the Lit Internal Shell by Default
fixes: #102399