Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2011-06-29 18:28:57 +0000
committerDoug Schaefer2011-06-29 18:30:07 +0000
commit6eff5311d773391e672943e636335dc091101be0 (patch)
tree5fa5363f7bd77d7bed82c8d4156e8ddfec674350 /upc/org.eclipse.cdt.core.parser.upc.tests
parent1e2e41d3029d8f5f8901ff123694d320c893f720 (diff)
downloadorg.eclipse.cdt-6eff5311d773391e672943e636335dc091101be0.tar.gz
org.eclipse.cdt-6eff5311d773391e672943e636335dc091101be0.tar.xz
org.eclipse.cdt-6eff5311d773391e672943e636335dc091101be0.zip
More tests for the Maven build.
Diffstat (limited to 'upc/org.eclipse.cdt.core.parser.upc.tests')
-rw-r--r--upc/org.eclipse.cdt.core.parser.upc.tests/pom.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/upc/org.eclipse.cdt.core.parser.upc.tests/pom.xml b/upc/org.eclipse.cdt.core.parser.upc.tests/pom.xml
new file mode 100644
index 00000000000..277f442f9a7
--- /dev/null
+++ b/upc/org.eclipse.cdt.core.parser.upc.tests/pom.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse.cdt</groupId>
+ <artifactId>cdt-parent</artifactId>
+ <version>8.0.0-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+
+ <version>5.1.0-SNAPSHOT</version>
+ <artifactId>org.eclipse.cdt.core.parser.upc.tests</artifactId>
+ <packaging>eclipse-test-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <useUIHarness>false</useUIHarness>
+ <argLine>-Xms256m -Xmx512m -XX:MaxPermSize=256M</argLine>
+ <includes>
+ <include>**/UPCParserTestSuite.*</include>
+ </includes>
+ <testFailureIgnore>true</testFailureIgnore>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>

Back to the top