From 8d9497b1286ee2d194b3463ce5d55ef4df0dbf4d Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Mon, 5 Dec 2022 19:53:21 -0800 Subject: [PATCH] Disable an extension in Xvfb to work around errors seen when running Impeller/Vulkan unit tests See https://github.com/flutter/flutter/issues/116130 --- testing/xvfb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/xvfb.py b/testing/xvfb.py index b7f6f40411d8b..fe09429b552f8 100644 --- a/testing/xvfb.py +++ b/testing/xvfb.py @@ -88,7 +88,7 @@ def StartVirtualX(child_build_name, build_dir): # run the tests even if we didn't start the tests from an X session. proc = subprocess.Popen([ cmd, display, '-screen', '0', '1280x800x24', '-ac', '-dpi', '96', - '-maxclients', '512' + '-maxclients', '512', '-extension', 'MIT-SHM' ], stdout=subprocess.PIPE, stderr=subprocess.STDOUT,