From b54d5f55210b720266704dc4437c3598cc58680f Mon Sep 17 00:00:00 2001 From: jaseg Date: Wed, 15 Jul 2020 21:21:40 +0200 Subject: tests: Fix test_write for segaults in libmpv (#108) --- mpv-test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mpv-test.py b/mpv-test.py index 031b806..5123dc3 100755 --- a/mpv-test.py +++ b/mpv-test.py @@ -106,6 +106,10 @@ class TestProperties(MpvTestCase): time.sleep(0.05) check_canaries = lambda: os.path.exists('100') or os.path.exists('foo') for name in sorted(self.m.property_list): + # See issue #108 and upstream mpv issues #7919 and #7920. + if name in ('demuxer', 'audio-demuxer', 'audio-files'): + continue + # These may cause files to be created if name in ('external-file', 'heartbeat-cmd', 'wid', 'dump-stats', 'log-file') or name.startswith('input-'): continue name = name.replace('-', '_') -- cgit