diff options
author | Daniel Stone <daniels@collabora.com> | 2017-01-17 15:00:42 +0000 |
---|---|---|
committer | Daniel Stone <daniels@collabora.com> | 2017-01-30 18:56:50 +0000 |
commit | 4938f93f578c0d73d63068e4a777250fce7db430 (patch) | |
tree | f358fd96555d229514a1a10b602a75caa6d5a4e1 /Makefile.am | |
parent | ffff92d592e1635a7ee4511ad3e080f7576553bd (diff) | |
download | weston-4938f93f578c0d73d63068e4a777250fce7db430.tar.gz weston-4938f93f578c0d73d63068e4a777250fce7db430.tar.bz2 weston-4938f93f578c0d73d63068e4a777250fce7db430.zip |
tests: Remove buffer-count
buffer-count was introduced in line with a Mesa change which forced
an earlier block on frame events to try to enforce double-buffering
where available.
The Mesa change has since been reverted (Mesa commit 9ca6711faa), as
this had unpleasant interactions with buffer_age in particular, so this
test is no longer valid.
Additionally, it only worked on backends which initialised EGL (not
headless-backend, where tests generally run), which can be flaky due to
initialisation races. Not only that, but on the DRM backend, we can
legitimately enter triple-buffering due to promoting the surface to a
hardware plane, skipping GPU composition.
In light of all this, just remove the test.
Signed-off-by: Daniel Stone <daniels@collabora.com>
Reviewed-by: Derek Foreman <derekf@osg.samsung.com>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index 8627e5e1..e798deef 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1387,13 +1387,6 @@ nodist_viewporter_weston_SOURCES = \ viewporter_weston_CFLAGS = $(AM_CFLAGS) $(TEST_CLIENT_CFLAGS) viewporter_weston_LDADD = libtest-client.la -if ENABLE_EGL -weston_tests += buffer-count.weston -buffer_count_weston_SOURCES = tests/buffer-count-test.c -buffer_count_weston_CFLAGS = $(AM_CFLAGS) $(EGL_TESTS_CFLAGS) $(TEST_CLIENT_CFLAGS) -buffer_count_weston_LDADD = libtest-client.la $(EGL_TESTS_LIBS) -endif - if ENABLE_XWAYLAND_TEST weston_tests += xwayland-test.weston xwayland_test_weston_SOURCES = tests/xwayland-test.c |