Build: https://builds.apache.org/job/Lucene-Solr-tests-only-3.x/9560/
No tests ran.
Build Log (for compile errors):
[...truncated 3754 lines...]
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:41:
warning: [unchecked] unchecked call to put(K,V) as a member of the raw type
java.util.Map
[javac] l.put("size", "100");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:42:
warning: [unchecked] unchecked call to put(K,V) as a member of the raw type
java.util.Map
[javac] l.put("initialSize", "10");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:43:
warning: [unchecked] unchecked call to put(K,V) as a member of the raw type
java.util.Map
[javac] l.put("autowarmCount", "25");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:47:
warning: [unchecked] unchecked call to put(K,V) as a member of the raw type
org.apache.solr.search.SolrCache
[javac] newCache.put(oldKey, oldVal);
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:54:
warning: [unchecked] unchecked call to put(K,V) as a member of the raw type
org.apache.solr.search.FastLRUCache
[javac] sc.put(i + 1, "" + (i + 1));
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:56:
warning: [unchecked] unchecked call to get(K) as a member of the raw type
org.apache.solr.search.FastLRUCache
[javac] assertEquals("25", sc.get(25));
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:57:
warning: [unchecked] unchecked call to get(K) as a member of the raw type
org.apache.solr.search.FastLRUCache
[javac] assertEquals(null, sc.get(110));
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:63:
warning: [unchecked] unchecked call to get(K) as a member of the raw type
org.apache.solr.search.FastLRUCache
[javac] assertEquals(null, sc.get(1)); // first item put in should be
the first out
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:71:
warning: [unchecked] unchecked call to put(K,V) as a member of the raw type
org.apache.solr.search.FastLRUCache
[javac] scNew.put(103, "103");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:72:
warning: [unchecked] unchecked call to get(K) as a member of the raw type
org.apache.solr.search.FastLRUCache
[javac] assertEquals("90", scNew.get(90));
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:73:
warning: [unchecked] unchecked call to get(K) as a member of the raw type
org.apache.solr.search.FastLRUCache
[javac] assertEquals(null, scNew.get(50));
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:118:
warning: [unchecked] unchecked call to
ConcurrentLRUCache(int,int,int,int,boolean,boolean,org.apache.solr.common.util.ConcurrentLRUCache.EvictionListener<K,V>)
as a member of the raw type org.apache.solr.common.util.ConcurrentLRUCache
[javac] ConcurrentLRUCache cache = new
ConcurrentLRUCache(upperWaterMark, lowerWaterMark,
(upperWaterMark+lowerWaterMark)/2, upperWaterMark, false, false, null);
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:122:
warning: [unchecked] unchecked call to put(K,V) as a member of the raw type
org.apache.solr.common.util.ConcurrentLRUCache
[javac] cache.put(r.nextInt(maxKey),"TheValue");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:156:
warning: [unchecked] unchecked call to get(K) as a member of the raw type
org.apache.solr.search.SolrCache
[javac] Integer v = (Integer)sc.get(k);
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:158:
warning: [unchecked] unchecked call to put(K,V) as a member of the raw type
org.apache.solr.search.SolrCache
[javac] sc.put(k, k);
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:169:
warning: [unchecked] unchecked call to put(K,V) as a member of the raw type
org.apache.solr.search.SolrCache
[javac] sc.put(kv,kv);
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:176:
warning: [unchecked] unchecked call to put(K,V) as a member of the raw type
java.util.Map
[javac] l.put("size", ""+cacheSize);
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/search/TestFastLRUCache.java:177:
warning: [unchecked] unchecked call to put(K,V) as a member of the raw type
java.util.Map
[javac] l.put("initialSize", ""+cacheSize);
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:65:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac] spellchecker.add("classname",
FileBasedSpellChecker.class.getName());
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:67:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac] spellchecker.add(SolrSpellChecker.DICTIONARY_NAME, "external");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:68:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac] spellchecker.add(AbstractLuceneSpellChecker.LOCATION,
"spellings.txt");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:69:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac] spellchecker.add(IndexBasedSpellChecker.FIELD, "teststop");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:70:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac]
spellchecker.add(FileBasedSpellChecker.SOURCE_FILE_CHAR_ENCODING, "UTF-8");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:73:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac] spellchecker.add(FileBasedSpellChecker.INDEX_DIR,
indexDir.getAbsolutePath());
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:102:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac] spellchecker.add("classname",
FileBasedSpellChecker.class.getName());
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:103:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac] spellchecker.add(SolrSpellChecker.DICTIONARY_NAME, "external");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:104:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac] spellchecker.add(AbstractLuceneSpellChecker.LOCATION,
"spellings.txt");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:105:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac] spellchecker.add(IndexBasedSpellChecker.FIELD, "teststop");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:106:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac]
spellchecker.add(FileBasedSpellChecker.SOURCE_FILE_CHAR_ENCODING, "UTF-8");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:109:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac] spellchecker.add(FileBasedSpellChecker.INDEX_DIR,
indexDir.getAbsolutePath());
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:110:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac] spellchecker.add(FileBasedSpellChecker.FIELD_TYPE, "teststop");
[javac] ^
[javac]
/usr/home/hudson/hudson-slave/workspace/Lucene-Solr-tests-only-3.x/checkout/solr/core/src/test/org/apache/solr/spelling/FileBasedSpellCheckerTest.java:111:
warning: [unchecked] unchecked call to add(java.lang.String,T) as a member of
the raw type org.apache.solr.common.util.NamedList
[javac]
spellchecker.add(AbstractLuceneSpellChecker.SPELLCHECKER_ARG_NAME,
spellchecker);
[javac] ^
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files additionally use unchecked or unsafe
operations.
[javac] 9 errors
[...truncated 13 lines...]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]