Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Ufimtsev2017-07-20 00:19:36 +0000
committerLeo Ufimtsev2017-07-20 00:40:56 +0000
commit610c36f36bcbc8509c1a53a463ec4671f7976118 (patch)
treefeaf87b6eec0a989f4c45d10920d9f73bbd7ba32 /tests/org.eclipse.swt.tests/pom.xml
parent1456aedcdf8e260181b29d3f7f86c765c766f459 (diff)
downloadeclipse.platform.swt-610c36f36bcbc8509c1a53a463ec4671f7976118.tar.gz
eclipse.platform.swt-610c36f36bcbc8509c1a53a463ec4671f7976118.tar.xz
eclipse.platform.swt-610c36f36bcbc8509c1a53a463ec4671f7976118.zip
Bug 519916 pom.xml doesn't have to specify webkit as default browser
anymore In tests/../pom.xml, we hard-code the default browser to be webkit. This causes maven tests related to Browser to fail on Windows as it's trying to use webkit instead of I.e, which by default is not installed. I.e: <argLine> .. -Dorg.eclipse.swt.browser.DefaultType=webkit ... </argLine> Since XUL Runner is removed from codebase, hard-coding webkit is no longer needed. As of recently: - On Linux, webkit is default - On Cocoa, webkit is default - On Win, I.E is default Thus the hard-coding can be safely removed without breakage. Change-Id: I815d3ac45f4c957f0d6f79066d27f2a1d98b2273 Signed-off-by: Leo Ufimtsev <lufimtse@redhat.com>
Diffstat (limited to 'tests/org.eclipse.swt.tests/pom.xml')
-rw-r--r--tests/org.eclipse.swt.tests/pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/org.eclipse.swt.tests/pom.xml b/tests/org.eclipse.swt.tests/pom.xml
index 055ca7c3fd..9bd1fc6a90 100644
--- a/tests/org.eclipse.swt.tests/pom.xml
+++ b/tests/org.eclipse.swt.tests/pom.xml
@@ -64,7 +64,7 @@
<phase>integration-test</phase>
<configuration>
<testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
- <argLine>@{tycho.testArgLine} -Dorg.eclipse.swt.internal.gtk.disablePrinting -Dorg.eclipse.swt.browser.DefaultType=webkit ${os-jvm-flags}</argLine>
+ <argLine>@{tycho.testArgLine} -Dorg.eclipse.swt.internal.gtk.disablePrinting ${os-jvm-flags}</argLine>
</configuration>
</execution>
</executions>

Back to the top