From 5bd911139f0a17f0cd6cb29a702dd1eecf03e64e Mon Sep 17 00:00:00 2001 From: Marc-Andre Laperle Date: Thu, 3 Sep 2015 01:16:38 -0400 Subject: [PATCH] Fix SWTBot keyboard failure on headless Mac Running tests that use the keyboard (AWT) on headless Mac fails with java.awt.AWTException: headless environment Setting java.awt.headless=false fixes this. Change-Id: Ia693d1900a2bd8cfdeaf6816366800a872a45bad Signed-off-by: Marc-Andre Laperle Reviewed-on: https://git.eclipse.org/r/55160 Reviewed-by: Hudson CI --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ebeeac8023..34f4e05c53 100644 --- a/pom.xml +++ b/pom.xml @@ -129,7 +129,7 @@ - ${base.test.vmargs} -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts + ${base.test.vmargs} -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts -Djava.awt.headless=false -- 2.34.1