From aae07d9572459b4a7142bb614d673783233699b9 Mon Sep 17 00:00:00 2001 From: Uwe Schindler Date: Mon, 19 Mar 2018 15:35:34 +0100 Subject: [PATCH] LUCENE-8155: Fix Solr example with Java 9 (was a problem when reverting an old commit) --- dev-tools/scripts/smokeTestRelease.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py index a4e7135ecc0..2e6f1e68ac4 100644 --- a/dev-tools/scripts/smokeTestRelease.py +++ b/dev-tools/scripts/smokeTestRelease.py @@ -760,7 +760,7 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te #checkJavadocpathFull('%s/solr/build/docs' % unpackPath, False) print(' test solr example w/ Java 9...') - java.run_java9('ant clean example', '%s/antexample.log' % unpackPath) + java.run_java9('ant clean server', '%s/antexample.log' % unpackPath) testSolrExample(unpackPath, java.java9_home, True) os.chdir('..')