Skip to content

Commit

Permalink
HV-758 Excluding tests failing in RI and when running on AS from TCK …
Browse files Browse the repository at this point in the history
…test run
  • Loading branch information
gunnarmorling authored and hferentschik committed Mar 14, 2013
1 parent f81bbf1 commit b1be8d3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tck-runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
<description>Aggregates dependencies and runs the JSR-303 TCK</description>

<properties>
<tck.version>1.1.0-SNAPSHOT</tck.version>
<tck.suite.file>${project.build.directory}/dependency/beanvalidation-tck-tests-suite.xml</tck.suite.file>
<tck.version>1.1.0-SNAPSHOT</tck.version>
<tck.suite.file>src/test/resources/tck-tests-without-RI-and-AS-failures.xml</tck.suite.file>
<arquillian.version>1.0.0.Final</arquillian.version>
<jbossas.version>7.1.1.Final</jbossas.version>
<jbossTargetDir>${project.build.directory}/jboss-as-${jbossas.version}</jbossTargetDir>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >

<suite name="JSR-349-TCK" verbose="1">
<test name="JSR-349-TCK">

<method-selectors>
<method-selector>
<selector-class name="org.hibernate.beanvalidation.tck.util.IntegrationTestsMethodSelector"/>
</method-selector>
</method-selectors>

<groups>
<run>
<exclude name="FAILING_IN_RI"/>
<exclude name="FAILING_ON_AS"/>
</run>
</groups>

<packages>
<package name="org.hibernate.beanvalidation.tck.tests.*"/>
</packages>
</test>
</suite>

0 comments on commit b1be8d3

Please sign in to comment.