From aba5c91d7af6fe2b0b0ce88cf1fea72c3dbf699f Mon Sep 17 00:00:00 2001 From: Kamil Tokarski Date: Tue, 10 Dec 2024 20:56:31 +0100 Subject: [PATCH 1/2] Fix running the python-self-core-exec2 twice Signed-off-by: Kamil Tokarski --- qa/TL0_python-self-test-core-exec2/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/TL0_python-self-test-core-exec2/test.sh b/qa/TL0_python-self-test-core-exec2/test.sh index 1e454a0647c..7e81a6eaae0 100644 --- a/qa/TL0_python-self-test-core-exec2/test.sh +++ b/qa/TL0_python-self-test-core-exec2/test.sh @@ -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 From 694c7d310bb6af4c500a692c7da4f466b2560b95 Mon Sep 17 00:00:00 2001 From: Kamil Tokarski Date: Tue, 10 Dec 2024 23:39:54 +0100 Subject: [PATCH 2/2] Propagate the tests failure in sanit runs Signed-off-by: Kamil Tokarski --- qa/test_template_impl.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qa/test_template_impl.sh b/qa/test_template_impl.sh index 2ccc5b9cc82..454272cf88f 100755 --- a/qa/test_template_impl.sh +++ b/qa/test_template_impl.sh @@ -111,9 +111,11 @@ test_body_wrapper() {( fi test_body + RV=$? if [ -n "$DALI_ENABLE_SANITIZERS" ]; then disable_sanitizer + return ${RV} fi )}