Open yukiregista opened 2 months ago
valgrind を使う時、python の suppressionファイルをダウンロードしておくと見やすくなるらしい。 valgrind --leak-check=full --log-file=valgrind.out --suppressions=valgrind-python.supp python -m pytest test.py みたいな感じ。
valgrind --leak-check=full --log-file=valgrind.out --suppressions=valgrind-python.supp python -m pytest test.py
例えば https://svn.python.org/projects/python/trunk/Misc/valgrind-python.supp をダウンロードする。
→結局色々なパターンがありうまくできなかった。ただ、適当にやり過ぎると本当のleakを見逃しそうなので、Pythonの吐くものもある程度含めながら丁寧に見るのが良さそう。
valgrind を使う時、python の suppressionファイルをダウンロードしておくと見やすくなるらしい。
valgrind --leak-check=full --log-file=valgrind.out --suppressions=valgrind-python.supp python -m pytest test.py
みたいな感じ。例えば https://svn.python.org/projects/python/trunk/Misc/valgrind-python.supp をダウンロードする。
→結局色々なパターンがありうまくできなかった。ただ、適当にやり過ぎると本当のleakを見逃しそうなので、Pythonの吐くものもある程度含めながら丁寧に見るのが良さそう。