Hi,
This was the same with build 76. It looks like this special character is no
longer treated as whitespace, although all previous Java versions were treating
it as whitespace. I will remove this character from the whitespace list for now
and maybe open issue @ Rory.
Character.isWhitespace('\u180E') returns false. According to Unicode tables it
could be whitespace, but also inside JDK it's not 100% sure, they opened bug at
some point but closed as won't fix:
https://bugs.openjdk.java.net/browse/JDK-4915940; maybe Robert has an idea, if
this a bug or not!
I checked with this program, it should return true for all the array elements:
==========
import java.util.Locale;
public final class Test {
/** List of characters that match {@link Character#isWhitespace} */
public static final char[] WHITESPACE_CHARACTERS = new char[] {
'\u0009',
'\n',
'\u000B',
'\u000C',
'\r',
'\u001C',
'\u001D',
'\u001E',
'\u001F',
'\u0020',
'\u1680',
'\u180E', // critical char!
'\u2000',
'\u2001',
'\u2002',
'\u2003',
'\u2004',
'\u2005',
'\u2006',
'\u2008',
'\u2009',
'\u200A',
'\u2028',
'\u2029',
'\u205F',
'\u3000',
};
public static void main(String[] args) throws ParseException {
for (char ch : WHITESPACE_CHARACTERS) {
System.out.println(String.format(Locale.ROOT, "\\u%04x: %b", (int) ch,
Character.isWhitespace(ch)));
}
}
}
============================
It prints false for the problematic character:
\u0009: true
\u000a: true
\u000b: true
\u000c: true
\u000d: true
\u001c: true
\u001d: true
\u001e: true
\u001f: true
\u0020: true
\u1680: true
\u180e: false
\u2000: true
\u2001: true
\u2002: true
\u2003: true
\u2004: true
\u2005: true
\u2006: true
\u2008: true
\u2009: true
\u200a: true
\u2028: true
\u2029: true
\u205f: true
\u3000: true
Uwe
-----
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: [email protected]
> -----Original Message-----
> From: Policeman Jenkins Server [mailto:[email protected]]
> Sent: Saturday, August 22, 2015 7:24 PM
> To: [email protected]
> Subject: [JENKINS-EA] Lucene-Solr-trunk-Linux (64bit/jdk1.9.0-ea-b78) - Build
> # 13959 - Failure!
> Importance: Low
>
> Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/13959/
> Java: 64bit/jdk1.9.0-ea-b78 -XX:-UseCompressedOops -XX:+UseG1GC
>
> 1 tests failed.
> FAILED: org.apache.solr.search.ReturnFieldsTest.testWhitespace
>
> Error Message:
> Not really whitespace? (@11):
>
> Stack Trace:
> java.lang.AssertionError: Not really whitespace? (@11):
> at
> __randomizedtesting.SeedInfo.seed([30B1D909332F3F96:F6C76D478F0D586
> 0]:0)
> at org.junit.Assert.fail(Assert.java:93)
> at org.junit.Assert.assertTrue(Assert.java:43)
> at
> org.apache.lucene.util.TestUtil.randomWhitespace(TestUtil.java:1191)
> at
> org.apache.solr.search.ReturnFieldsTest.testWhitespace(ReturnFieldsTest.ja
> va:351)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j
> ava:62)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
> sorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:504)
> at
> com.carrotsearch.randomizedtesting.RandomizedRunner.invoke(Randomize
> dRunner.java:1627)
> at
> com.carrotsearch.randomizedtesting.RandomizedRunner$6.evaluate(Rando
> mizedRunner.java:836)
> at
> com.carrotsearch.randomizedtesting.RandomizedRunner$7.evaluate(Rando
> mizedRunner.java:872)
> at
> com.carrotsearch.randomizedtesting.RandomizedRunner$8.evaluate(Rando
> mizedRunner.java:886)
> at
> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
> evaluate(SystemPropertiesRestoreRule.java:57)
> at
> org.apache.lucene.util.TestRuleSetupTeardownChained$1.evaluate(TestRule
> SetupTeardownChained.java:50)
> at
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeA
> fterRule.java:46)
> at
> org.apache.lucene.util.TestRuleThreadAndTestName$1.evaluate(TestRuleTh
> readAndTestName.java:49)
> at
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRule
> IgnoreAfterMaxFailures.java:65)
> at
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure
> .java:48)
> at
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
> ementAdapter.java:36)
> at
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
> run(ThreadLeakControl.java:365)
> at
> com.carrotsearch.randomizedtesting.ThreadLeakControl.forkTimeoutingTask
> (ThreadLeakControl.java:798)
> at
> com.carrotsearch.randomizedtesting.ThreadLeakControl$3.evaluate(ThreadL
> eakControl.java:458)
> at
> com.carrotsearch.randomizedtesting.RandomizedRunner.runSingleTest(Ran
> domizedRunner.java:845)
> at
> com.carrotsearch.randomizedtesting.RandomizedRunner$3.evaluate(Rando
> mizedRunner.java:747)
> at
> com.carrotsearch.randomizedtesting.RandomizedRunner$4.evaluate(Rando
> mizedRunner.java:781)
> at
> com.carrotsearch.randomizedtesting.RandomizedRunner$5.evaluate(Rando
> mizedRunner.java:792)
> at
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
> ementAdapter.java:36)
> at
> com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule$1.
> evaluate(SystemPropertiesRestoreRule.java:57)
> at
> org.apache.lucene.util.AbstractBeforeAfterRule$1.evaluate(AbstractBeforeA
> fterRule.java:46)
> at
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
> ementAdapter.java:36)
> at
> org.apache.lucene.util.TestRuleStoreClassName$1.evaluate(TestRuleStoreCl
> assName.java:42)
> at
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
> at
> com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMet
> hodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39)
> at
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
> ementAdapter.java:36)
> at
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
> ementAdapter.java:36)
> at
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
> ementAdapter.java:36)
> at
> org.apache.lucene.util.TestRuleAssertionsRequired$1.evaluate(TestRuleAss
> ertionsRequired.java:54)
> at
> org.apache.lucene.util.TestRuleMarkFailure$1.evaluate(TestRuleMarkFailure
> .java:48)
> at
> org.apache.lucene.util.TestRuleIgnoreAfterMaxFailures$1.evaluate(TestRule
> IgnoreAfterMaxFailures.java:65)
> at
> org.apache.lucene.util.TestRuleIgnoreTestSuites$1.evaluate(TestRuleIgnore
> TestSuites.java:55)
> at
> com.carrotsearch.randomizedtesting.rules.StatementAdapter.evaluate(Stat
> ementAdapter.java:36)
> at
> com.carrotsearch.randomizedtesting.ThreadLeakControl$StatementRunner.
> run(ThreadLeakControl.java:365)
> at java.lang.Thread.run(Thread.java:746)
>
>
>
>
> Build Log:
> [...truncated 9965 lines...]
> [junit4] Suite: org.apache.solr.search.ReturnFieldsTest
> [junit4] 2> Creating dataDir: /home/jenkins/workspace/Lucene-Solr-
> trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001
> [junit4] 2> 791991 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.SolrTestCaseJ4 Randomized ssl
> (false) and clientAuth (true)
> [junit4] 2> 791991 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.SolrTestCaseJ4 ####initCore
> [junit4] 2> 791991 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.SolrResourceLoader new
> SolrResourceLoader for directory: '/home/jenkins/workspace/Lucene-Solr-
> trunk-Linux/solr/core/src/test-files/solr/collection1/'
> [junit4] 2> 791992 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.SolrResourceLoader Adding
> 'file:/home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-
> files/solr/collection1/lib/classes/' to classloader
> [junit4] 2> 791992 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.SolrResourceLoader Adding
> 'file:/home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-
> files/solr/collection1/lib/README' to classloader
> [junit4] 2> 792005 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.SolrConfig current version of
> requestparams : -1
> [junit4] 2> 792012 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.SolrConfig Using Lucene
> MatchVersion: 6.0.0
> [junit4] 2> 792025 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.Config Loaded SolrConfig:
> solrconfig.xml
> [junit4] 2> 792025 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.s.IndexSchema Reading Solr
> Schema from /home/jenkins/workspace/Lucene-Solr-trunk-
> Linux/solr/core/src/test-files/solr/collection1/conf/schema12.xml
> [junit4] 2> 792029 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.s.IndexSchema [null] Schema
> name=test
> [junit4] 2> 792099 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.s.IndexSchema default search
> field in schema is text
> [junit4] 2> 792099 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.s.IndexSchema unique key
> field: id
> [junit4] 2> 792100 WARN (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.s.IndexSchema Field text is not
> multivalued and destination for multiple copyFields (2)
> [junit4] 2> 792104 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.s.FileExchangeRateProvider
> Reloading exchange rates from file currency.xml
> [junit4] 2> 792106 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.s.FileExchangeRateProvider
> Reloading exchange rates from file currency.xml
> [junit4] 2> 792107 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.SolrResourceLoader JNDI not
> configured for solr (NoInitialContextEx)
> [junit4] 2> 792107 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.SolrResourceLoader using
> system property solr.solr.home: /home/jenkins/workspace/Lucene-Solr-
> trunk-Linux/solr/core/src/test-files/solr
> [junit4] 2> 792107 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.SolrResourceLoader new
> SolrResourceLoader for directory: '/home/jenkins/workspace/Lucene-Solr-
> trunk-Linux/solr/core/src/test-files/solr/'
> [junit4] 2> 792114 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.CoreContainer New
> CoreContainer 1337194277
> [junit4] 2> 792114 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.CoreContainer Loading cores
> into CoreContainer [instanceDir=/home/jenkins/workspace/Lucene-Solr-
> trunk-Linux/solr/core/src/test-files/solr/]
> [junit4] 2> 792114 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.CoreContainer loading shared
> library: /home/jenkins/workspace/Lucene-Solr-trunk-
> Linux/solr/core/src/test-files/solr/lib
> [junit4] 2> 792114 WARN (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.SolrResourceLoader Can't
> find (or read) directory to add to classloader: lib (resolved as:
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-
> files/solr/lib).
> [junit4] 2> 792119 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.h.c.HttpShardHandlerFactory
> created with socketTimeout : 600000,connTimeout :
> 60000,maxConnectionsPerHost : 20,maxConnections : 10000,corePoolSize :
> 0,maximumPoolSize : 2147483647,maxThreadIdleTime : 5,sizeOfQueue : -
> 1,fairnessPolicy : false,useRetries : false,
> [junit4] 2> 792133 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.u.UpdateShardHandler
> Creating UpdateShardHandler HTTP client with params:
> socketTimeout=30000&connTimeout=30000&retry=true
> [junit4] 2> 792134 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.l.LogWatcher SLF4J impl is
> org.slf4j.impl.Log4jLoggerFactory
> [junit4] 2> 792134 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.l.LogWatcher Registering Log
> Listener [Log4j (org.slf4j.impl.Log4jLoggerFactory)]
> [junit4] 2> 792134 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.CoreContainer Security conf
> doesn't exist. Skipping setup for authorization module.
> [junit4] 2> 792134 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.CoreContainer No
> authentication plugin used.
> [junit4] 2> 792135 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.SolrCore Created
> CoreDescriptor: {name=collection1, config=solrconfig.xml, transient=false,
> schema=schema12.xml, loadOnStartup=true,
> configSetProperties=configsetprops.json, instanceDir=collection1,
> collection=collection1, absoluteInstDir=/home/jenkins/workspace/Lucene-
> Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/,
> dataDir=/home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001, shard=shard1}
> [junit4] 2> 792135 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.c.SolrResourceLoader new SolrResourceLoader for directory:
> '/home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-
> files/solr/collection1/'
> [junit4] 2> 792135 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.c.SolrResourceLoader Adding 'file:/home/jenkins/workspace/Lucene-
> Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/lib/classes/' to
> classloader
> [junit4] 2> 792135 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.c.SolrResourceLoader Adding 'file:/home/jenkins/workspace/Lucene-
> Solr-trunk-Linux/solr/core/src/test-files/solr/collection1/lib/README' to
> classloader
> [junit4] 2> 792147 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.c.SolrConfig current version of requestparams : -1
> [junit4] 2> 792153 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.c.SolrConfig Using Lucene MatchVersion: 6.0.0
> [junit4] 2> 792167 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.c.Config Loaded SolrConfig: solrconfig.xml
> [junit4] 2> 792167 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.s.IndexSchema Reading Solr Schema from
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-
> files/solr/collection1/conf/schema12.xml
> [junit4] 2> 792170 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.s.IndexSchema [collection1] Schema name=test
> [junit4] 2> 792234 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.s.IndexSchema default search field in schema is text
> [junit4] 2> 792235 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.s.IndexSchema unique key field: id
> [junit4] 2> 792235 WARN (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.s.IndexSchema Field text is not multivalued and destination for multiple
> copyFields (2)
> [junit4] 2> 792238 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.s.FileExchangeRateProvider Reloading exchange rates from file
> currency.xml
> [junit4] 2> 792240 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.s.FileExchangeRateProvider Reloading exchange rates from file
> currency.xml
> [junit4] 2> 792241 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.c.ConfigSetProperties Did not find ConfigSet properties, assuming
> default properties: Can't find resource 'configsetprops.json' in classpath or
> '/home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-
> files/solr/collection1/conf'
> [junit4] 2> 792241 INFO (coreLoadExecutor-3120-thread-1) [ ]
> o.a.s.c.CoreContainer Creating SolrCore 'collection1' using configuration from
> instancedir /home/jenkins/workspace/Lucene-Solr-trunk-
> Linux/solr/core/src/test-files/solr/collection1/
> [junit4] 2> 792241 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore org.apache.solr.core.MockDirectoryFactory
> [junit4] 2> 792241 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore [[collection1] ] Opening new SolrCore at
> [/home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/core/src/test-
> files/solr/collection1/], dataDir=[null]
> [junit4] 2> 792242 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.JmxMonitoredMap JMX monitoring is enabled. Adding
> Solr mbeans to JMX Server:
> com.sun.jmx.mbeanserver.JmxMBeanServer@28500ec
> [junit4] 2> 792242 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.CachingDirectoryFactory return new directory for
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001
> [junit4] 2> 792242 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore New index directory detected: old=null
> new=/home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001/index/
> [junit4] 2> 792242 WARN (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore [collection1] Solr index directory
> '/home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001/index' doesn't exist. Creating new index...
> [junit4] 2> 792242 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.CachingDirectoryFactory return new directory for
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001/index
> [junit4] 2> 792243 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.RandomMergePolicy RandomMergePolicy wrapping
> class org.apache.lucene.index.MockRandomMergePolicy:
> org.apache.lucene.index.MockRandomMergePolicy@3e853965
> [junit4] 2> 792243 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore SolrDeletionPolicy.onCommit: commits: num=1
> [junit4] 2>
> commit{dir=MockDirectoryWrapper(RAMDirectory@59189990
> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@71f0b78b),
> segFN=segments_1,generation=1}
> [junit4] 2> 792243 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore newest commit generation = 1
> [junit4] 2> 792243 INFO (OldIndexDirectoryCleanupThreadForCore-
> collection1) [ x:collection1] o.a.s.c.SolrCore Looking for old index
> directories
> to cleanup for core collection1 in /home/jenkins/workspace/Lucene-Solr-
> trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001/
> [junit4] 2> 792245 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.p.UpdateRequestProcessorChain creating
> updateRequestProcessorChain "dedupe"
> [junit4] 2> 792245 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.p.UpdateRequestProcessorChain inserting
> DistributedUpdateProcessorFactory into updateRequestProcessorChain
> "dedupe"
> [junit4] 2> 792245 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.p.UpdateRequestProcessorChain creating
> updateRequestProcessorChain "dedupe-allfields"
> [junit4] 2> 792245 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.p.UpdateRequestProcessorChain inserting
> DistributedUpdateProcessorFactory into updateRequestProcessorChain
> "dedupe-allfields"
> [junit4] 2> 792245 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.p.UpdateRequestProcessorChain creating
> updateRequestProcessorChain "stored_sig"
> [junit4] 2> 792245 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.p.UpdateRequestProcessorChain inserting
> DistributedUpdateProcessorFactory into updateRequestProcessorChain
> "stored_sig"
> [junit4] 2> 792245 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.p.UpdateRequestProcessorChain creating
> updateRequestProcessorChain "uniq-fields"
> [junit4] 2> 792246 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.p.UpdateRequestProcessorChain inserting
> DistributedUpdateProcessorFactory into updateRequestProcessorChain
> "uniq-fields"
> [junit4] 2> 792246 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.p.UpdateRequestProcessorChain creating
> updateRequestProcessorChain "distrib-dup-test-chain-explicit"
> [junit4] 2> 792246 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.p.UpdateRequestProcessorChain creating
> updateRequestProcessorChain "distrib-dup-test-chain-implicit"
> [junit4] 2> 792246 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.p.UpdateRequestProcessorChain inserting
> DistributedUpdateProcessorFactory into updateRequestProcessorChain
> "distrib-dup-test-chain-implicit"
> [junit4] 2> 792246 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore no updateRequestProcessorChain defined as
> default, creating implicit default
> [junit4] 2> 792247 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.h.l.XMLLoader xsltCacheLifetimeSeconds=60
> [junit4] 2> 792248 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.h.l.XMLLoader xsltCacheLifetimeSeconds=60
> [junit4] 2> 792248 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.h.l.XMLLoader xsltCacheLifetimeSeconds=60
> [junit4] 2> 792249 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.h.l.XMLLoader xsltCacheLifetimeSeconds=60
> [junit4] 2> 792250 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.PluginBag requestHandler : 'lazy' created with
> startup=lazy
> [junit4] 2> 792251 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.RequestHandlers Registered paths:
> /admin/mbeans,standard,spellCheckCompRH,lazy,/update/json/docs,/admi
> n/luke,spellCheckWithWordbreak_Direct,tvrh,/get,/admin/properties,/upda
> te/json,mltrh,/admin/threads,/search-facet-def,/update/csv,/search-facet-
> invariants,/admin/segments,spellCheckCompRH1,/mlt,/admin/system,/repli
> cation,dismax,defaults,/config,/schema,/admin/plugins,/admin/logging,spell
> CheckWithWordbreak,mock,/admin/ping,/update,/admin/file,/terms,spellC
> heckCompRH_Direct,/debug/dump
> [junit4] 2> 792252 WARN (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore solrconfig.xml uses deprecated
> <admin/gettableFiles>, Please update your config to use the
> ShowFileRequestHandler.
> [junit4] 2> 792252 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore Using default statsCache cache:
> org.apache.solr.search.stats.LocalStatsCache
> [junit4] 2> 792252 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore Hard AutoCommit: disabled
> [junit4] 2> 792252 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore Soft AutoCommit: disabled
> [junit4] 2> 792253 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.u.RandomMergePolicy RandomMergePolicy wrapping
> class org.apache.lucene.index.TieredMergePolicy: [TieredMergePolicy:
> maxMergeAtOnce=25, maxMergeAtOnceExplicit=10,
> maxMergedSegmentMB=78.537109375, floorSegmentMB=1.9228515625,
> forceMergeDeletesPctAllowed=10.837993902581303, segmentsPerTier=28.0,
> maxCFSSegmentSizeMB=8.796093022207999E12,
> noCFSRatio=0.8661515318496736
> [junit4] 2> 792253 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore SolrDeletionPolicy.onInit: commits: num=1
> [junit4] 2>
> commit{dir=MockDirectoryWrapper(RAMDirectory@59189990
> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@71f0b78b),
> segFN=segments_1,generation=1}
> [junit4] 2> 792253 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.SolrCore newest commit generation = 1
> [junit4] 2> 792253 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.s.SolrIndexSearcher Opening
> Searcher@2b4a0f7[collection1] main
> [junit4] 2> 792253 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.r.RestManager Initializing RestManager with initArgs:
> {storageIO=org.apache.solr.rest.ManagedResourceStorage$InMemoryStora
> geIO}
> [junit4] 2> 792253 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.r.ManagedResourceStorage Reading _rest_managed.json
> using InMemoryStorage
> [junit4] 2> 792254 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.r.RestManager Initializing 0 registered
> ManagedResources
> [junit4] 2> 792254 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.h.c.SpellCheckComponent Initializing spell checkers
> [junit4] 2> 792586 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.s.DirectSolrSpellChecker init:
> {name=direct,classname=DirectSolrSpellChecker,field=lowerfilt,minQueryLe
> ngth=3}
> [junit4] 2> 793018 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.h.ReplicationHandler Commits will be reserved for 10000
> [junit4] 2> 793018 INFO (searcherExecutor-3121-thread-1-processing-
> x:collection1) [ x:collection1] o.a.s.h.c.SpellCheckComponent Loading spell
> index for spellchecker: default
> [junit4] 2> 793018 INFO (searcherExecutor-3121-thread-1-processing-
> x:collection1) [ x:collection1] o.a.s.h.c.SpellCheckComponent Loading spell
> index for spellchecker: direct
> [junit4] 2> 793018 INFO (searcherExecutor-3121-thread-1-processing-
> x:collection1) [ x:collection1] o.a.s.h.c.SpellCheckComponent Loading spell
> index for spellchecker: wordbreak
> [junit4] 2> 793018 INFO (searcherExecutor-3121-thread-1-processing-
> x:collection1) [ x:collection1] o.a.s.h.c.SpellCheckComponent Loading spell
> index for spellchecker: multipleFields
> [junit4] 2> 793018 INFO (coreLoadExecutor-3120-thread-1) [
> x:collection1] o.a.s.c.CoreContainer registering core: collection1
> [junit4] 2> 793018 INFO (searcherExecutor-3121-thread-1-processing-
> x:collection1) [ x:collection1] o.a.s.h.c.SpellCheckComponent Loading spell
> index for spellchecker: jarowinkler
> [junit4] 2> 793019 INFO (searcherExecutor-3121-thread-1-processing-
> x:collection1) [ x:collection1] o.a.s.h.c.SpellCheckComponent Loading spell
> index for spellchecker: external
> [junit4] 2> 793019 INFO (searcherExecutor-3121-thread-1-processing-
> x:collection1) [ x:collection1] o.a.s.h.c.SpellCheckComponent Loading spell
> index for spellchecker: freq
> [junit4] 2> 793019 INFO (searcherExecutor-3121-thread-1-processing-
> x:collection1) [ x:collection1] o.a.s.h.c.SpellCheckComponent Loading spell
> index for spellchecker: fqcn
> [junit4] 2> 793019 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.SolrTestCaseJ4 ####initCore
> end
> [junit4] 2> 793019 INFO (searcherExecutor-3121-thread-1-processing-
> x:collection1) [ x:collection1] o.a.s.h.c.SpellCheckComponent Loading spell
> index for spellchecker: perDict
> [junit4] 2> 793020 INFO (searcherExecutor-3121-thread-1-processing-
> x:collection1) [ x:collection1] o.a.s.c.SolrCore [collection1] Registered
> new
> searcher Searcher@2b4a0f7[collection1]
> main{ExitableDirectoryReader(UninvertingDirectoryReader())}
> [junit4] 2> 793020 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.u.p.LogUpdateProcessor
> [collection1] webapp=null path=null params={} {add=[1]} 0 1
> [junit4] 2> 793022 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.u.p.LogUpdateProcessor
> [collection1] webapp=null path=null params={} {add=[2]} 0 0
> [junit4] 2> 793022 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.u.UpdateHandler start
> commit{,optimize=false,openSearcher=true,waitSearcher=true,expungeDel
> etes=false,softCommit=false,prepareCommit=false}
> [junit4] 2> 793024 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.SolrCore
> SolrDeletionPolicy.onCommit: commits: num=2
> [junit4] 2>
> commit{dir=MockDirectoryWrapper(RAMDirectory@59189990
> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@71f0b78b),
> segFN=segments_1,generation=1}
> [junit4] 2>
> commit{dir=MockDirectoryWrapper(RAMDirectory@59189990
> lockFactory=org.apache.lucene.store.SingleInstanceLockFactory@71f0b78b),
> segFN=segments_2,generation=2}
> [junit4] 2> 793024 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.SolrCore newest commit
> generation = 2
> [junit4] 2> 793025 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.s.SolrIndexSearcher Opening
> Searcher@119e2006[collection1] main
> [junit4] 2> 793025 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.u.UpdateHandler
> end_commit_flush
> [junit4] 2> 793026 INFO (searcherExecutor-3121-thread-1) [ ]
> o.a.s.c.SolrCore [collection1] Registered new searcher
> Searcher@119e2006[collection1]
> main{ExitableDirectoryReader(UninvertingDirectoryReader(Uninverting(_0(6
> .0.0):C2)))}
> [junit4] 2> 793026 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.u.p.LogUpdateProcessor
> [collection1] webapp=null path=null params={} {commit=} 0 3
> [junit4] 2> 793028 INFO (TEST-ReturnFieldsTest.testSeparators-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Starting
> testSeparators
> [junit4] 2> 793029 INFO (TEST-ReturnFieldsTest.testSeparators-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Ending
> testSeparators
> [junit4] 2> 793031 INFO (TEST-
> ReturnFieldsTest.testTrailingDotInFieldName-seed#[30B1D909332F3F96]) [
> ] o.a.s.SolrTestCaseJ4 ###Starting testTrailingDotInFieldName
> [junit4] 2> 793031 INFO (TEST-
> ReturnFieldsTest.testTrailingDotInFieldName-seed#[30B1D909332F3F96]) [
> ] o.a.s.SolrTestCaseJ4 ###Ending testTrailingDotInFieldName
> [junit4] 2> 793033 INFO (TEST-ReturnFieldsTest.testWilcards-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Starting
> testWilcards
> [junit4] 2> 793034 INFO (TEST-ReturnFieldsTest.testWilcards-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Ending testWilcards
> [junit4] 2> 793036 INFO (TEST-ReturnFieldsTest.testWhitespace-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Starting
> testWhitespace
> [junit4] 2> 793037 INFO (TEST-ReturnFieldsTest.testWhitespace-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Ending
> testWhitespace
> [junit4] 2> NOTE: reproduce with: ant test -Dtestcase=ReturnFieldsTest -
> Dtests.method=testWhitespace -Dtests.seed=30B1D909332F3F96 -
> Dtests.multiplier=3 -Dtests.slow=true -Dtests.locale=ja_JP_JP_#u-ca-
> japanese -Dtests.timezone=Asia/Muscat -Dtests.asserts=true -
> Dtests.file.encoding=UTF-8
> [junit4] FAILURE 0.01s J1 | ReturnFieldsTest.testWhitespace <<<
> [junit4] > Throwable #1: java.lang.AssertionError: Not really
> whitespace?
> (@11):
> [junit4] > at
> __randomizedtesting.SeedInfo.seed([30B1D909332F3F96:F6C76D478F0D586
> 0]:0)
> [junit4] > at
> org.apache.lucene.util.TestUtil.randomWhitespace(TestUtil.java:1191)
> [junit4] > at
> org.apache.solr.search.ReturnFieldsTest.testWhitespace(ReturnFieldsTest.ja
> va:351)
> [junit4] > at java.lang.Thread.run(Thread.java:746)
> [junit4] 2> 793043 INFO (TEST-
> ReturnFieldsTest.testTrailingDollarInFieldName-seed#[30B1D909332F3F96]) [
> ] o.a.s.SolrTestCaseJ4 ###Starting testTrailingDollarInFieldName
> [junit4] 2> 793043 INFO (TEST-
> ReturnFieldsTest.testTrailingDollarInFieldName-seed#[30B1D909332F3F96]) [
> ] o.a.s.SolrTestCaseJ4 ###Ending testTrailingDollarInFieldName
> [junit4] 2> 793044 INFO (TEST-ReturnFieldsTest.testFunctions-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Starting
> testFunctions
> [junit4] 2> 793046 INFO (TEST-ReturnFieldsTest.testFunctions-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Ending
> testFunctions
> [junit4] 2> 793048 INFO (TEST-ReturnFieldsTest.testCopyRename-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Starting
> testCopyRename
> [junit4] 2> 793049 INFO (TEST-ReturnFieldsTest.testCopyRename-
> seed#[30B1D909332F3F96]) [ ] o.a.s.c.S.Request [collection1] webapp=null
> path=null params={q=id:1&fl=id&wt=xml} hits=1 status=0 QTime=0
> [junit4] 2> 793049 INFO (TEST-ReturnFieldsTest.testCopyRename-
> seed#[30B1D909332F3F96]) [ ] o.a.s.c.S.Request [collection1] webapp=null
> path=null params={q=id:1&fl=xxx:id&wt=xml} hits=1 status=0 QTime=0
> [junit4] 2> 793050 INFO (TEST-ReturnFieldsTest.testCopyRename-
> seed#[30B1D909332F3F96]) [ ] o.a.s.c.S.Request [collection1] webapp=null
> path=null params={q=id:1&fl=id,xxx:id&wt=xml} hits=1 status=0 QTime=0
> [junit4] 2> 793051 INFO (TEST-ReturnFieldsTest.testCopyRename-
> seed#[30B1D909332F3F96]) [ ] o.a.s.c.S.Request [collection1] webapp=null
> path=null params={q=id:1&fl=xxx:id,id&wt=xml} hits=1 status=0 QTime=0
> [junit4] 2> 793052 INFO (TEST-ReturnFieldsTest.testCopyRename-
> seed#[30B1D909332F3F96]) [ ] o.a.s.c.S.Request [collection1] webapp=null
> path=null params={q=id:1&fl=xxx:id,yyy:id&wt=xml} hits=1 status=0
> QTime=0
> [junit4] 2> 793053 INFO (TEST-ReturnFieldsTest.testCopyRename-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Ending
> testCopyRename
> [junit4] 2> 793055 INFO (TEST-ReturnFieldsTest.testManyParameters-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Starting
> testManyParameters
> [junit4] 2> 793055 INFO (TEST-ReturnFieldsTest.testManyParameters-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Ending
> testManyParameters
> [junit4] 2> 793056 INFO (TEST-ReturnFieldsTest.testTransformers-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Starting
> testTransformers
> [junit4] 2> 793057 INFO (TEST-ReturnFieldsTest.testTransformers-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Ending
> testTransformers
> [junit4] 2> 793059 INFO (TEST-ReturnFieldsTest.testHyphenInFieldName-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Starting
> testHyphenInFieldName
> [junit4] 2> 793059 INFO (TEST-ReturnFieldsTest.testHyphenInFieldName-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Ending
> testHyphenInFieldName
> [junit4] 2> 793061 INFO (TEST-ReturnFieldsTest.testAliases-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Starting testAliases
> [junit4] 2> 793061 INFO (TEST-ReturnFieldsTest.testAliases-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Ending testAliases
> [junit4] 2> 793063 INFO (TEST-ReturnFieldsTest.testFunkyFieldNames-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Starting
> testFunkyFieldNames
> [junit4] 2> 793063 INFO (TEST-ReturnFieldsTest.testFunkyFieldNames-
> seed#[30B1D909332F3F96]) [ ] o.a.s.c.S.Request [collection1] webapp=null
> path=null params={q=id:1&fl=#foo_s&fl=id&wt=xml} hits=1 status=0
> QTime=0
> [junit4] 2> 793064 INFO (TEST-ReturnFieldsTest.testFunkyFieldNames-
> seed#[30B1D909332F3F96]) [ ] o.a.s.SolrTestCaseJ4 ###Ending
> testFunkyFieldNames
> [junit4] 2> 793064 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.SolrTestCaseJ4 ###deleteCore
> [junit4] 2> 793064 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ ] o.a.s.c.CoreContainer Shutting down
> CoreContainer instance=1337194277
> [junit4] 2> 793064 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ x:collection1] o.a.s.c.SolrCore
> [collection1] CLOSING SolrCore org.apache.solr.core.SolrCore@74cdd400
> [junit4] 2> 793065 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ x:collection1] o.a.s.u.UpdateHandler
> closing DirectUpdateHandler2{commits=1,autocommits=0,soft
> autocommits=0,optimizes=0,rollbacks=0,expungeDeletes=0,docsPending=0,
> adds=0,deletesById=0,deletesByQuery=0,errors=0,cumulative_adds=2,cum
> ulative_deletesById=0,cumulative_deletesByQuery=0,cumulative_errors=0}
> [junit4] 2> 793065 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ x:collection1] o.a.s.u.SolrCoreState
> Closing SolrCoreState
> [junit4] 2> 793065 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ x:collection1]
> o.a.s.u.DefaultSolrCoreState SolrCoreState ref count has reached 0 - closing
> IndexWriter
> [junit4] 2> 793065 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ x:collection1]
> o.a.s.u.DefaultSolrCoreState closing IndexWriter with IndexWriterCloser
> [junit4] 2> 793065 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ x:collection1] o.a.s.c.SolrCore
> [collection1] Closing main searcher on request.
> [junit4] 2> 793073 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ x:collection1]
> o.a.s.c.CachingDirectoryFactory Closing MockDirectoryFactory - 2 directories
> currently being tracked
> [junit4] 2> 793073 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ x:collection1]
> o.a.s.c.CachingDirectoryFactory looking to close
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001
> [CachedDir<<refCount=0;path=/home/jenkins/workspace/Lucene-Solr-
> trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001;done=false>>]
> [junit4] 2> 793073 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ x:collection1]
> o.a.s.c.CachingDirectoryFactory Closing directory:
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001
> [junit4] 2> 793073 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ x:collection1]
> o.a.s.c.CachingDirectoryFactory looking to close
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001/index
> [CachedDir<<refCount=0;path=/home/jenkins/workspace/Lucene-Solr-
> trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001/index;done=false>>]
> [junit4] 2> 793073 INFO (SUITE-ReturnFieldsTest-
> seed#[30B1D909332F3F96]-worker) [ x:collection1]
> o.a.s.c.CachingDirectoryFactory Closing directory:
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-
> 001/init-core-data-001/index
> [junit4] 2> NOTE: leaving temporary files on disk at:
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build/solr-
> core/test/J1/temp/solr.search.ReturnFieldsTest_30B1D909332F3F96-001
> [junit4] 2> NOTE: test params are:
> codec=HighCompressionCompressingStoredFields(storedFieldsFormat=Com
> pressingStoredFieldsFormat(compressionMode=HIGH_COMPRESSION,
> chunkSize=5663, maxDocsPerChunk=7, blockSize=7),
> termVectorsFormat=CompressingTermVectorsFormat(compressionMode=H
> IGH_COMPRESSION, chunkSize=5663, blockSize=7)), sim=DefaultSimilarity,
> locale=ja_JP_JP_#u-ca-japanese, timezone=Asia/Muscat
> [junit4] 2> NOTE: Linux 3.19.0-26-generic amd64/Oracle Corporation 1.9.0-
> ea (64-bit)/cpus=12,threads=1,free=284495672,total=536870912
> [junit4] 2> NOTE: All tests run in this JVM: [SimpleMLTQParserTest,
> BJQParserTest, LukeRequestHandlerTest, ShowFileRequestHandlerTest,
> BasicFunctionalityTest, SolrCmdDistributorTest,
> TestManagedSchemaFieldTypeResource, TestInitParams,
> BasicAuthIntegrationTest, TestCloudPivotFacet,
> LeaderInitiatedRecoveryOnCommitTest, TestIndexSearcher,
> CdcrReplicationDistributedZkTest, TestLRUStatsCache,
> TestStressUserVersions, DistanceFunctionTest, TestFastLRUCache,
> HttpPartitionTest, TestLFUCache, TestScoreJoinQPScore, ZkStateReaderTest,
> ChaosMonkeySafeLeaderTest, TestSchemaNameResource,
> DistributedTermsComponentTest, CdcrUpdateLogTest,
> TestComponentsName, TestFuzzyAnalyzedSuggestions,
> PreAnalyzedFieldTest, TestNamedUpdateProcessors,
> TestDefaultSearchFieldResource, HdfsCollectionsAPIDistributedZkTest,
> TestMiniSolrCloudCluster, DocValuesMissingTest, BadComponentTest,
> CollectionReloadTest, TestCollationFieldDocValues,
> TestSolrConfigHandlerCloud, TestOrdValues, TestConfigSets,
> CoreMergeIndexesAdminHandlerTest, DisMaxRequestHandlerTest,
> TestClassNameShortening, TestRecoveryHdfs, TestStressVersions,
> TestSimpleTrackingShardHandler, TestManagedResourceStorage,
> RequiredFieldsTest, ExplicitHLLTest, TestUniqueKeyFieldResource,
> TestAuthenticationFramework, RAMDirectoryFactoryTest,
> HdfsDirectoryTest, SolrPluginUtilsTest, TestConfigOverlay,
> DistributedMLTComponentTest, TriLevelCompositeIdRoutingTest,
> CollectionStateFormat2Test, MergeStrategyTest, ScriptEngineTest,
> AnalyticsMergeStrategyTest, JSONWriterTest,
> StatelessScriptUpdateProcessorFactoryTest, SliceStateTest,
> DeleteLastCustomShardedReplicaTest, TestFieldTypeResource,
> JsonLoaderTest, AddSchemaFieldsUpdateProcessorFactoryTest,
> AddBlockUpdateTest, ReturnFieldsTest]
> [junit4] Completed [239/541] on J1 in 1.09s, 12 tests, 1 failure <<<
> FAILURES!
>
> [...truncated 960 lines...]
> BUILD FAILED
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:775: The
> following error occurred while executing this line:
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:719: The
> following error occurred while executing this line:
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/build.xml:59: The
> following error occurred while executing this line:
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/build.xml:233: The
> following error occurred while executing this line:
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/solr/common-
> build.xml:514: The following error occurred while executing this line:
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-
> build.xml:1432: The following error occurred while executing this line:
> /home/jenkins/workspace/Lucene-Solr-trunk-Linux/lucene/common-
> build.xml:987: There were test failures: 541 suites, 2134 tests, 1 failure, 68
> ignored (32 assumptions)
>
> Total time: 45 minutes 39 seconds
> Build step 'Invoke Ant' marked build as failure Archiving artifacts
> [WARNINGS] Skipping publisher since build result is FAILURE Recording test
> results Email was triggered for: Failure - Any Sending email for trigger:
> Failure
> - Any
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]