Hi Laurent,
Thankyou for this patch. It successfully allows me to use the latest kmsxx,
rather than a much older base that I had been sat on.
Your commit title could do with an 'e' after 'th', but otherwise this patch is
good :D
On 07/12/17 18:33, Laurent Pinchart wrote:
> Commit 706a44abb3aa ("Update to latest pybind11") of kmsxx broke the
> test suite by changing the signature of the AtomicRequest::commit
> function. Update the test suite accordingly.
>
> Signed-off-by: Laurent Pinchart <[email protected]>
Reviewed-by: Kieran Bingham <[email protected]>
> ---
> tests/kmstest.py | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> The aforementioned commit also broke the test suite due to two other issues
> that need to be fixed in kmsxx. Two patches have been submitted for upstream
> inclusion, they can in the meantime be found at
>
> git://git.ideasonboard.com/renesas/kmsxx.git master
>
> diff --git a/tests/kmstest.py b/tests/kmstest.py
> index 45d619c7a9be..7de785edd1e3 100755
> --- a/tests/kmstest.py
> +++ b/tests/kmstest.py
> @@ -238,7 +238,7 @@ class KMSTest(object):
> if sync:
> return req.commit_sync(True)
> else:
> - return req.commit(self, True)
> + return req.commit(0, True)
>
> def atomic_crtc_mode_set(self, crtc, connector, mode, fb=None,
> sync=False):
> """Perform a mode set on the given connector and CRTC. The
> framebuffer,
> @@ -268,7 +268,7 @@ class KMSTest(object):
> if sync:
> return req.commit_sync(True)
> else:
> - return req.commit(self, True)
> + return req.commit(0, True)
>
> def atomic_plane_set(self, plane, crtc, source, destination, fb,
> sync=False):
> req = pykms.AtomicReq(self.card)
> @@ -287,7 +287,7 @@ class KMSTest(object):
> if sync:
> return req.commit_sync()
> else:
> - return req.commit(self)
> + return req.commit(0)
>
> def atomic_planes_disable(self, sync=True):
> req = pykms.AtomicReq(self.card)
> @@ -297,7 +297,7 @@ class KMSTest(object):
> if sync:
> return req.commit_sync()
> else:
> - return req.commit(self)
> + return req.commit(0)
>
> def __handle_page_flip(self, frame, time):
> self.flips += 1
>