tests: Fix test_write for segaults in libmpv (#108)
This commit is contained in:
parent
e6abadec7e
commit
b54d5f5521
1 changed files with 4 additions and 0 deletions
|
|
@ -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('-', '_')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue