You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2018/02/26 23:47:31 UTC

[2/4] lucene-solr:branch_7x: LUCENE-8106: fix module regex to recognize Windows path backslashes

LUCENE-8106: fix module regex to recognize Windows path backslashes


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/443cc19d
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/443cc19d
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/443cc19d

Branch: refs/heads/branch_7x
Commit: 443cc19db2afa28ab258a577d4bbd6e9e0b24b57
Parents: ad9182a
Author: Steve Rowe <sa...@apache.org>
Authored: Mon Feb 26 18:43:52 2018 -0500
Committer: Steve Rowe <sa...@apache.org>
Committed: Mon Feb 26 18:44:24 2018 -0500

----------------------------------------------------------------------
 dev-tools/scripts/reproduceJenkinsFailures.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/443cc19d/dev-tools/scripts/reproduceJenkinsFailures.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/reproduceJenkinsFailures.py b/dev-tools/scripts/reproduceJenkinsFailures.py
index 5e081cb..f6da613 100644
--- a/dev-tools/scripts/reproduceJenkinsFailures.py
+++ b/dev-tools/scripts/reproduceJenkinsFailures.py
@@ -46,7 +46,7 @@ reTestsSeed = re.compile(r'-Dtests.seed=\S+\s*')
 reJenkinsURLWithoutConsoleText = re.compile(r'https?://.*/\d+/?\Z', re.IGNORECASE)
 
 reJavaFile = re.compile(r'(.*)\.java\Z')
-reModule = re.compile(r'\./(.*)/src/')
+reModule = re.compile(r'\.[\\/](.*)[\\/]src[\\/]')
 reTestOutputFile = re.compile(r'TEST-(.*\.([^-.]+))(?:-\d+)?\.xml\Z')
 reErrorFailure = re.compile(r'(?:errors|failures)="[^0]')
 reGitMainBranch = re.compile(r'^(?:master|branch_[x_\d]+)$')