File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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 : |
You can’t perform that action at this time.
0 commit comments