Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Pazderski2020-01-06 16:28:14 +0000
committerPaul Pazderski2020-01-06 16:28:23 +0000
commit555a63e025313f947a8167dd25f4d4df0d936648 (patch)
tree2188928980ba29ea0545d2d693300e363be618ee /tests
parent4810cf67c305ecf4f1cc6885f365ce787b23f784 (diff)
downloadeclipse.platform.swt-555a63e025313f947a8167dd25f4d4df0d936648.tar.gz
eclipse.platform.swt-555a63e025313f947a8167dd25f4d4df0d936648.tar.xz
eclipse.platform.swt-555a63e025313f947a8167dd25f4d4df0d936648.zip
Bug 558848 - [Tests] Show full stacktrace of SWT test failures
Change-Id: I64242714d10b16b12b6e4b940af49f13b3820008 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de>
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.swt.tests/pom.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/org.eclipse.swt.tests/pom.xml b/tests/org.eclipse.swt.tests/pom.xml
index f47a863d03..c4498f32e5 100644
--- a/tests/org.eclipse.swt.tests/pom.xml
+++ b/tests/org.eclipse.swt.tests/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2019 Eclipse Foundation and others.
+ Copyright (c) 2012, 2020 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -70,6 +70,9 @@
<user.home>${project.build.directory}</user.home> <!-- used as cache directory for SWT native libraries -->
<org.eclipse.swt.internal.gtk.enableStrictChecks>true</org.eclipse.swt.internal.gtk.enableStrictChecks> <!-- see bug 532632 -->
</systemPropertyVariables>
+ <!-- Trim does not only remove the entries before entering the test method but
+ also every entry which is not part of the test class. See bug 558848 for example. -->
+ <trimStackTrace>false</trimStackTrace>
</configuration>
</execution>
</executions>

Back to the top