You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2015/12/19 18:35:58 UTC

maven-surefire git commit: [SUREFIRE-1209] rerunFailingTestsCount does not run failed tests if forkCount and surefire-junit47 is used

Repository: maven-surefire
Updated Branches:
  refs/heads/master 63963d676 -> 7ad21fd1f


[SUREFIRE-1209] rerunFailingTestsCount does not run failed tests if forkCount and surefire-junit47 is used


Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/7ad21fd1
Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/7ad21fd1
Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/7ad21fd1

Branch: refs/heads/master
Commit: 7ad21fd1f1d66f40dd8805f95048876925837c76
Parents: 63963d6
Author: Tibor17 <ti...@lycos.com>
Authored: Sat Dec 19 18:34:00 2015 +0100
Committer: Tibor17 <ti...@lycos.com>
Committed: Sat Dec 19 18:34:00 2015 +0100

----------------------------------------------------------------------
 .../java/org/apache/maven/surefire/booter/LazyTestsToRun.java   | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/7ad21fd1/surefire-booter/src/main/java/org/apache/maven/surefire/booter/LazyTestsToRun.java
----------------------------------------------------------------------
diff --git a/surefire-booter/src/main/java/org/apache/maven/surefire/booter/LazyTestsToRun.java b/surefire-booter/src/main/java/org/apache/maven/surefire/booter/LazyTestsToRun.java
index 2b75732..bccb44c 100644
--- a/surefire-booter/src/main/java/org/apache/maven/surefire/booter/LazyTestsToRun.java
+++ b/surefire-booter/src/main/java/org/apache/maven/surefire/booter/LazyTestsToRun.java
@@ -138,6 +138,11 @@ final class LazyTestsToRun
             {
                 return findClass( it.next() );
             }
+
+            public void remove()
+            {
+                throw new UnsupportedOperationException( "remove" );
+            }
         };
     }
 }