[PATCH weston 4/4] tests: Drop weston-tests-env

2013-07-25 Thread Quentin Glidic
From: Quentin Glidic This file is no longer needed using the parallel-tests feature of automake This also allows users to pass additional arguments to weston and to force a backend This change is still compatible with automake 1.11 without needing the export hack any more Signed-off-by: Quentin

[PATCH weston 2/4] shared/option-parser: Add string list options

2013-07-25 Thread Quentin Glidic
From: Quentin Glidic Signed-off-by: Quentin Glidic --- man/weston.man | 6 +++--- shared/config-parser.h | 1 + shared/option-parser.c | 15 +++ src/compositor.c | 31 ++- tests/weston-tests-env | 6 -- 5 files changed, 49 insertions(

[PATCH weston 3/4] weston-test: Get the test client path from args

2013-07-25 Thread Quentin Glidic
From: Quentin Glidic Signed-off-by: Quentin Glidic --- tests/weston-test.c| 16 ++-- tests/weston-tests-env | 3 ++- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/tests/weston-test.c b/tests/weston-test.c index b625f42..8feee9e 100644 --- a/tests/weston-test.c

[PATCH weston 1/4] shared/option-parser: Rework option parsing

2013-07-25 Thread Quentin Glidic
From: Quentin Glidic Long options with argument support two formats: equal ("--long=arg") and space ("--long arg") Short options now support three formats: short ("-sarg"), equal ("-s=arg") and space ("-s value") Provide a test program Signed-off-by: Quentin Glidic --- man/weston.man

[PATCH weston 0/4] Options and tests series

2013-07-25 Thread Quentin Glidic
From: Quentin Glidic The first two patches are improving option parsing. They work on their own. The other two patches update the tests part to drop the weston-tests-env script. They need the first two patches. Ultimately, it allows to run tests with the headless backend easily, for automated

Re: problem when running wayland

2013-07-25 Thread Rob Bradford
On 25 July 2013 13:55, M.hanny sabbagh wrote: > wl_global_create Was added in 4cffa0fd - you need to make sure the wayland you're linking to is new enough. Rob ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.

problem when running wayland

2013-07-25 Thread M . hanny sabbagh
Hello Everybody. i don't know if this place is the best place for this , but i have a problem after a compiled wayland and weston from source on Ubuntu 13.04: [10:47:37.037] weston 1.2.0 http://wayland.freedesktop.org/ Bug reports to: https://bugs.freedesktop.org/ente

Re: [PATCH weston] input: implement repeat_info event on wl_keyboard

2013-07-25 Thread Daniel Stone
Hi, On 16 July 2013 09:33, Jonny Lamb wrote: > weston-compositor and the weston-info client have also been updated to > pass on and print these values if present. The rate and delay defaults > originate from X. This and the protocol patch both look good to me; in particular I (surprisingly) can'

Re: [PATCH weston 5/6] input: Emit events on all resources for a client

2013-07-25 Thread Rob Bradford
Thanks for the feedback Daniel. > Implementation-wise, it mostly looks good, but - do we leak > focus_resource_list and friends when releasing? I can't find where > they're freed, but if you're freeing empty_list unconditionally, > you're going to have a bad time ... The list use here is kinda di