summaryrefslogtreecommitdiff
path: root/tests/kms-test-allplanes.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/kms-test-allplanes.py')
-rwxr-xr-xtests/kms-test-allplanes.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/kms-test-allplanes.py b/tests/kms-test-allplanes.py
index d883262..710ae66 100755
--- a/tests/kms-test-allplanes.py
+++ b/tests/kms-test-allplanes.py
@@ -9,7 +9,7 @@ class AllPlanesTest(kmstest.KMSTest):
"""Test composition with all planes enabled on all CRTCs."""
def handle_page_flip(self, frame, time):
- self.logger.log("Page flip complete")
+ self.logger.log('Page flip complete')
def main(self):
# Create the connectors to CRTCs map
@@ -25,14 +25,14 @@ class AllPlanesTest(kmstest.KMSTest):
connectors[crtc] = connector
for crtc in self.card.crtcs:
- self.start("composition on CRTC %u" % crtc.id)
+ self.start('composition on CRTC %u' % crtc.id)
# Get the connector and default mode
try:
connector = connectors[crtc];
mode = connector.get_default_mode()
except KeyError:
- self.skip("no connector or mode available")
+ self.skip('no connector or mode available')
continue
# List planes available for the CRTC
@@ -42,20 +42,20 @@ class AllPlanesTest(kmstest.KMSTest):
planes.append(plane)
if len(planes) == 0:
- self.skip("no plane available for CRTC")
+ self.skip('no plane available for CRTC')
continue
- self.logger.log("Testing connector %s, CRTC %u, mode %s with %u planes" % \
+ self.logger.log('Testing connector %s, CRTC %u, mode %s with %u planes' % \
(connector.fullname, crtc.id, mode.name, len(planes)))
# Create a frame buffer
- fb = pykms.DumbFramebuffer(self.card, mode.hdisplay, mode.vdisplay, "XR24")
+ fb = pykms.DumbFramebuffer(self.card, mode.hdisplay, mode.vdisplay, 'XR24')
pykms.draw_test_pattern(fb)
# Set the mode with a primary plane
ret = self.atomic_crtc_mode_set(crtc, connector, mode, fb)
if ret < 0:
- self.fail("atomic mode set failed with %d" % ret)
+ self.fail('atomic mode set failed with %d' % ret)
continue
self.run(3)
@@ -67,14 +67,14 @@ class AllPlanesTest(kmstest.KMSTest):
destination = kmstest.Rect(offset, offset, fb.width, fb.height)
ret = self.atomic_plane_set(plane, crtc, source, destination, fb)
if ret < 0:
- self.fail("atomic plane set failed with %d" % ret)
+ self.fail('atomic plane set failed with %d' % ret)
break
- self.logger.log("Adding plane %u" % plane.id)
+ self.logger.log('Adding plane %u' % plane.id)
self.run(1)
if self.flips == 0:
- self.fail("No page flip registered")
+ self.fail('No page flip registered')
break
offset += 50