Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Khouzam2015-10-27 13:37:01 +0000
committerGerrit Code Review @ Eclipse.org2015-10-30 17:45:23 +0000
commitca2070f25809c542862c1045ec808225a4d0be61 (patch)
tree406096fb3e8d5bca4316fa31b8c9831de5c7a897 /dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml
parente0516f30846a550ff57e14880472b040e687482c (diff)
downloadorg.eclipse.cdt-ca2070f25809c542862c1045ec808225a4d0be61.tar.gz
org.eclipse.cdt-ca2070f25809c542862c1045ec808225a4d0be61.tar.xz
org.eclipse.cdt-ca2070f25809c542862c1045ec808225a4d0be61.zip
Modify properties to make them easier to use.
Also standardize properties names Change-Id: I4b25f879d8c0b3b1e74b9590905b1a4b0cfe02ca
Diffstat (limited to 'dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml')
-rw-r--r--dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml
index 29eafaf222c..8833a93abd1 100644
--- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml
+++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml
@@ -16,8 +16,8 @@
<packaging>eclipse-test-plugin</packaging>
<properties>
- <gdbPathOption>-Dcdt.tests.dsf.gdb.path=/shared/common/gdb/gdb-all/bin</gdbPathOption>
- <gdbTestSuite>AutomatedSuite.java</gdbTestSuite>
+ <dsf.gdb.tests.gdbPath>/shared/common/gdb/gdb-all/bin</dsf.gdb.tests.gdbPath>
+ <dsf.gdb.tests.gdbTestSuite>AutomatedSuite.java</dsf.gdb.tests.gdbTestSuite>
<dsf.gdb.tests.timeout.multiplier>1</dsf.gdb.tests.timeout.multiplier>
</properties>
<build>
@@ -58,9 +58,9 @@
<version>${tycho-version}</version>
<configuration>
<useUIHarness>false</useUIHarness>
- <argLine>${tycho.testArgLine} ${base.ui.test.vmargs} -ea -Xms256m -Xmx512m -XX:MaxPermSize=256M ${gdbPathOption} -Ddsf.gdb.tests.timeout.multiplier=${dsf.gdb.tests.timeout.multiplier}</argLine>
+ <argLine>${tycho.testArgLine} ${base.ui.test.vmargs} -ea -Xms256m -Xmx512m -XX:MaxPermSize=256M -Dcdt.tests.dsf.gdb.path=${dsf.gdb.tests.gdbPath} -Ddsf.gdb.tests.timeout.multiplier=${dsf.gdb.tests.timeout.multiplier}</argLine>
<includes>
- <include>**/${gdbTestSuite}</include>
+ <include>**/${dsf.gdb.tests.gdbTestSuite}</include>
</includes>
<testFailureIgnore>true</testFailureIgnore>
</configuration>

Back to the top