You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2021/12/01 09:22:24 UTC

[lucene] branch branch_9_0 updated: LUCENE-10234: update smoke-tester with new module names.

This is an automated email from the ASF dual-hosted git repository.

dweiss pushed a commit to branch branch_9_0
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/branch_9_0 by this push:
     new 0b18b3b  LUCENE-10234: update smoke-tester with new module names.
0b18b3b is described below

commit 0b18b3b965cedaf5eb129aa41243a44c83ca826d
Author: Dawid Weiss <da...@carrotsearch.com>
AuthorDate: Wed Dec 1 09:59:15 2021 +0100

    LUCENE-10234: update smoke-tester with new module names.
---
 dev-tools/scripts/smokeTestRelease.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index 4e98dd4..8b09534 100755
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -660,9 +660,9 @@ def testDemo(run_java, isSrc, version, jdk):
     # For binary release, set up classpath as modules.
     cp = "--module-path modules"
     docsDir = 'docs'
-    checkIndexCmd = 'java -ea %s --module lucene.core/org.apache.lucene.index.CheckIndex index' % cp
-    indexFilesCmd = 'java -Dsmoketester=true %s --module lucene.demo/org.apache.lucene.demo.IndexFiles -index index -docs %s' % (cp, docsDir)
-    searchFilesCmd = 'java %s --module lucene.demo/org.apache.lucene.demo.SearchFiles -index index -query lucene' % cp
+    checkIndexCmd = 'java -ea %s --module org.apache.lucene.core/org.apache.lucene.index.CheckIndex index' % cp
+    indexFilesCmd = 'java -Dsmoketester=true %s --module org.apache.lucene.demo/org.apache.lucene.demo.IndexFiles -index index -docs %s' % (cp, docsDir)
+    searchFilesCmd = 'java %s --module org.apache.lucene.demo/org.apache.lucene.demo.SearchFiles -index index -query lucene' % cp
       
   run_java(indexFilesCmd, 'index.log')
   run_java(searchFilesCmd, 'search.log')