From a37b74a630296e1effd1b1ab5b599b30788b3fb6 Mon Sep 17 00:00:00 2001 From: Dawid Weiss Date: Wed, 1 Dec 2021 09:59:15 +0100 Subject: [PATCH] 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 04bfc136c77..7a7e80965f7 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')