Skip to content
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

Propagate tests error sanitizer #5744

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qa/TL0_python-self-test-core-exec2/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
export DALI_USE_EXEC2=1
pushd ../TL0_python-self-test-core
bash -e ./test_nofw.sh
bash -e ./test_nofw.sh
bash -e ./test_pytorch.sh
popd
2 changes: 2 additions & 0 deletions qa/test_template_impl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,11 @@ test_body_wrapper() {(
fi

test_body
RV=$?

if [ -n "$DALI_ENABLE_SANITIZERS" ]; then
disable_sanitizer
return ${RV}
fi
)}

Expand Down
Loading