summaryrefslogtreecommitdiff
path: root/test/files/jvm/serialization.check
Commit message (Collapse)AuthorAgeFilesLines
* Fixes #3878. No review.Aleksandar Pokopec2010-11-101-0/+4
|
* A test output changed. No review.Aleksandar Pokopec2010-11-081-2/+2
|
* Added separate bitmaps for private and transien...Hubert Plociniczak2010-11-021-0/+4
| | | | | | | | | | Added separate bitmaps for private and transient lazy vals. Closes #3038, #1573. Review by dragos. I had to fix a couple of initialization issues that checkinit forced me to do and that weren't a problem before because the bitmap was serialized even for @transitive. For that I needed to change the setters in checkinit so that they also update the bitmap.
* Two hashcode-related failing tests fixed.Aleksandar Pokopec2010-10-281-3/+3
| | | | | No review.
* As hash codes change, so do the tests - output ...Aleksandar Pokopec2010-10-201-2/+2
| | | | | As hash codes change, so do the tests - output order for a HashMap is different now. No review.
* Some tweaks to ListSet to make it less patholog...Paul Phillips2010-09-171-2/+2
| | | | | | | | | | | | | | | Some tweaks to ListSet to make it less pathological in its outlook. We can see some modest improvements in run time and answer quality via the enclosed test case: // with this patch: 2.250s elapsed, assertions pass. // without this patch: 51.441s elapsed, and it's a mercy killing: java.lang.StackOverflowError at scala.collection.immutable.ListSet$Node.contains(ListSet.scala:117) at scala.collection.immutable.ListSet$Node.contains(ListSet.scala:117) Closes #3822, review by community.
* Fixed the serialization test.Philipp Haller2010-03-241-2/+2
|
* new immutable.HashSet. review by community.Tiark Rompf2010-03-151-1/+1
|
* - new immutable HashMap implementation based on...Tiark Rompf2010-03-071-1/+1
| | | | | | | | | - new immutable HashMap implementation based on a hash trie. this is the first iteration, more optimizations will be added later. - updated test cases to reflect new ordering of elements - made Map.empty and Set.empty singletons, deprecating classes Map.EmptyMap and Set.EmptySet Review by extempore, odersky.
* [This patch submitted by ismael juma - commit m...Paul Phillips2009-12-011-3/+3
| | | | | | | | | | | | | | | | [This patch submitted by ismael juma - commit message his words, but condensed.] Fix ticket #1600: Serialization and deserialization of hash-based collections should not re-use hashCode. The collection is rebuilt on deserialization - note that this is not compatible with the previous serialization format. All @SerialVersionUIDs have been reset to 1. WeakHashMap is not Serializable and should not be so. TreeHashMap has not been reintegrated yet. OpenHashMap has not been updated. (I think this collection is flawed and should be removed or reimplemented.)
* updated/extended serialization tests michelou2009-11-201-73/+156
|
* Fixed collections unit test (regression in List...Philipp Haller2009-11-081-24/+20
| | | | | | Fixed collections unit test (regression in ListBuffer.apply) and serialization test.
* Moved disabled tests back into their original p...Antonio Cunei2009-11-061-0/+186
| | | | | | Moved disabled tests back into their original place. Expect 7 tests to fail.
* massive new collections checkin.Martin Odersky2009-05-081-190/+0
|
* Modifications to the 10 failing test cases to m...Paul Phillips2009-05-011-2/+2
| | | | | | Modifications to the 10 failing test cases to make them passing test cases in light of the patch from #1118.
* add serialization test, disabled patmat debug t...michelou2009-04-211-0/+4
| | | | | add serialization test, disabled patmat debug traces
* minor test add-onmichelou2008-08-261-0/+2
|
* Fixed serialization of enumsmichelou2008-08-261-0/+28
|
* Changed "," to ", " in Queue.toString.Martin Odersky2008-08-011-2/+2
|
* unify mutable and immutable stacks behavior (#957)stepancheg2008-06-061-2/+2
|
* added test case (serialization)michelou2008-02-211-0/+5
|
* uses readResolve for symbolsmichelou2008-02-201-1/+1
|
* fixed #523michelou2008-02-201-0/+5
|
* build target is now 1.5Martin Odersky2008-01-171-0/+146
| | | | | | case classes now generate objects not factory methods. some small cleanups for type inference
* Had to create a test/pending/jvm5 directory.Geoffrey Washburn2008-01-111-146/+0
| | | | | Moved tests that are failing, but no present fixes into pending.
* added/modified check filesMartin Odersky2007-10-261-4/+4
|
* Fixing the build (toString() issues in the comp...Sean McDirmid2007-03-301-16/+16
| | | | | | Fixing the build (toString() issues in the compiler) and the test suite (toString() issues, spacing issues, and some stringPrefix issues)
* added @serializable annotation to ListBuffermichelou2007-03-021-0/+8
|
* regenerated TupleN classes so that their toStri...Adriaan Moors2007-02-201-2/+2
| | | | | | regenerated TupleN classes so that their toString matches the (...) tuple syntax update .check files that contained tuple toString output
* (no commit message)Martin Odersky2007-02-031-2/+2
|
* updated check fileMartin Odersky2007-01-221-2/+2
|
* Fixed test/files/jvm/serialization.check due to...mihaylov2007-01-171-10/+10
| | | | | | Fixed test/files/jvm/serialization.check due to change in collection.Set.toString()
* Fixed serialization throughout RedBlack hierarchyIulian Dragos2007-01-051-6/+6
|
* updated check files with new tuple syntaxmichelou2006-12-131-2/+2
|
* changed ppBurak Emir2006-09-071-4/+4
|
* Fixed check filesmihaylov2006-03-091-6/+6
|
* Adjusted for the changed outputmihaylov2006-01-251-2/+2
|
* (no commit message)Martin Odersky2006-01-201-2/+40
|
* 'test-nsc' has been moved to 'test'.Gilles Dubochet2005-12-161-0/+100
|
* Removed old scala tests from new Scala core mod...Gilles Dubochet2005-12-161-100/+0
| | | | | Removed old scala tests from new Scala core module.
* slight change, when adding Iterable, inserting ...Burak Emir2005-12-151-2/+2
| | | | | slight change, when adding Iterable, inserting a space now
* *** empty log message ***mihaylov2005-06-071-3/+3
|
* - changed 'Seq(..)' to 'Stack(..)'.michelou2005-05-271-4/+4
|
* - changed order of attributes in HTML tags (why...michelou2005-05-271-2/+2
| | | | | - changed order of attributes in HTML tags (why?!).
* new XML API that deals with namespaces properlyburaq2005-04-111-2/+2
|
* - updated output.michelou2004-10-071-0/+12
|
* - added more tests.michelou2004-10-051-30/+62
|
* - serialization test of Scala collection classes.michelou2004-09-291-0/+56