-
Notifications
You must be signed in to change notification settings - Fork 392
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove EXPECT_DEATH
#1613
Closed
3 of 4 tasks
Labels
Milestone
Comments
elfenpiff
added
bug
Something isn't working
enhancement
New feature
technical debt
unclean code and design flaws
globex
labels
Sep 7, 2022
85 tasks
@elfenpiff last week @MatthiasKillat tried the approach with returning from a running thread. This might be the solution to remove the |
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 6, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 6, 2023
21 tasks
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
…r to make leak sanitizer play nice with EXPECT_FATAL_FAILURE
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
…emove superfluous parameter
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 7, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 9, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 9, 2023
…l interface test
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 9, 2023
…l interface test
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 9, 2023
…l interface test
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 13, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 13, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 13, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 13, 2023
elBoberido
added a commit
to ApexAI/iceoryx
that referenced
this issue
Feb 13, 2023
Merged
21 tasks
elBoberido
added a commit
to elBoberido/iceoryx
that referenced
this issue
Sep 5, 2023
…L_FAILURE' where possible
elBoberido
added a commit
to elBoberido/iceoryx
that referenced
this issue
Sep 5, 2023
elBoberido
added a commit
to elBoberido/iceoryx
that referenced
this issue
Sep 5, 2023
…L_FAILURE' where possible
elBoberido
added a commit
to elBoberido/iceoryx
that referenced
this issue
Sep 5, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Required information
In our cases using
EXPECT_DEATH
come often with undefined behavior which is unacceptable for certified tests. Possible approaches are:pthread_exit
inside the error handler, would require the implementation of that feature in POSIX wrapper for pthreads #1365ToDo
EXPECT_DEATH
and document it in the iceoryx testing documentEXPECT_DEATH
in cxx testsEXPECT_DEATH
in remaining hoofsEXPECT_DEATH
in the remaining iceoryx repoEXPECT_FATAL_FAILURE
in combination with theRouDiEnvironment
results in triggering the leak sanitizerFileReader
Can be split up in further issues when required.
Extracted from: #1196
The text was updated successfully, but these errors were encountered: