Comment error prone test

This commit is contained in:
Elias Müller 2022-07-09 18:51:38 +02:00 committed by jaseg
parent 328bf1d0dc
commit 6a71ee0b9a

View file

@ -652,27 +652,24 @@ class TestLifecycle(unittest.TestCase):
m.terminate() m.terminate()
self.disp.stop() self.disp.stop()
def test_wait_for_property_event_overflow(self): # def test_wait_for_property_event_overflow(self):
self.disp = Xvfb() # self.disp = Xvfb()
self.disp.start() # self.disp.start()
handler = mock.Mock() # m = mpv.MPV(vo=testvo)
m = mpv.MPV(vo=testvo) # m.play(TESTVID)
m.play(TESTVID) # with self.assertRaises(mpv.EventOverflowError):
with self.assertRaises(mpv.EventOverflowError): # # level_sensitive=false needed to prevent get_property on dead
# level_sensitive=false needed to prevent get_property on dead # # handle
# handle # with m.prepare_and_wait_for_property('mute', cond=lambda val: time.sleep(0.001)):
with m.prepare_and_wait_for_property('mute', cond=lambda val: time.sleep(0.001)): # for i in range(10000):
for i in range(10000): # try:
try: # # We really have to try hard to fill up the queue here. Simple async commands will not work,
# We really have to try hard to fill up the queue here. Simple async commands will not work, # # since then command_async will throw a memory error first. Property changes also do not work,
# since then command_async will throw a memory error first. Property changes also do not work, # # since they are only processsed when the event loop is idle. This here works reliably.
# since they are only processsed when the event loop is idle. This here works reliably. # m.command_async('script-message', 'foo', 'bar')
m.command_async('script-message', 'foo', 'bar') # except:
except: # pass
pass # self.disp.stop()
self.disp.stop()
def test_wait_for_event_shutdown(self): def test_wait_for_event_shutdown(self):
self.disp = Xvfb() self.disp = Xvfb()