Skip to content

Commit 7a7d90f

Browse files
MinyazevRusiems
authored andcommitted
Fix big with LSan suppresion
1 parent 093941f commit 7a7d90f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,13 @@ jobs:
7373
run: |
7474
QT_VERSION_FULL=$(qmake -query QT_VERSION)
7575
if [[ "$QT_VERSION_FULL" == 5.12* ]]; then
76-
export LSAN_OPTIONS="suppressions=leak:QPlatformIntegrationFactory::create"
76+
echo "leak:QPlatformIntegrationFactory::create" >> $PWD/lsan.supp
77+
export LSAN_OPTIONS="suppressions=$PWD/lsan.supp"
7778
fi
7879
PYTHONDEVMODE=1 PYTHONASYNCIODEBUG=1 PYTHONWARNINGS=error PYTHONMALLOC=malloc_debug \
7980
UBSAN_OPTIONS="halt_on_error=1" ASAN_OPTIONS="detect_leaks=1:detect_stack_use_after_return=1:fast_unwind_on_malloc=0" \
80-
PYTHONQT_RUN_ONLY_MEMORY_TESTS="true" make check TESTARGS="-platform minimal"
81+
PYTHONQT_RUN_ONLY_MEMORY_TESTS=1 \
82+
make check TESTARGS="-platform minimal"
8183
8284
- name: Generate Wrappers
8385
run: |

0 commit comments

Comments
 (0)