aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/lib-map.rs
Commit message (Collapse)AuthorAgeFilesLines
* Switch xfail system to use comments embedded in source files.Graydon Hoare2011-03-251-0/+1
|
* First pass on splitting stratum and opacity off of effects. WIP.Graydon Hoare2010-11-021-1/+1
|
* Add hashmap tests exercising strings as keys and values. No longer leaks on ↵Roy Frostig2010-09-071-37/+95
| | | | linux.
* Comment out hashmap tests exercising maps with str as key or value type, as ↵Roy Frostig2010-08-271-0/+2
| | | | they appear to cause leaks.
* Add simple hashmap tests exercising maps with str as key type, value type, ↵Roy Frostig2010-08-271-15/+85
| | | | and both.
* Pinching myself for certainty. ;pRoy Frostig2010-08-261-0/+4
|
* Test the hashmap more, exercising hash collision, element removal, and a ↵Roy Frostig2010-08-261-7/+129
| | | | forced rehashing that actually causes elements to change buckets. In the process, find a bug in hashmap's remove() and fix it.
* When copying function values, null out the destination's binding iff the ↵Roy Frostig2010-08-261-14/+10
| | | | source's binding is null.
* Test the hashmap for growth and rehashing.Roy Frostig2010-08-261-2/+69
|
* Fix ghastly typestate bug breaking nested functions.Graydon Hoare2010-08-251-0/+1
|
* First successful hashmap lookups. Yay.Graydon Hoare2010-08-241-0/+4
|
* Fix mod-bug in std.map, work around bug in closure typaram capture, enable ↵Graydon Hoare2010-08-241-2/+9
| | | | insert-tests in lib-map.rs.
* Add to std._io some formatter/type-specific-writer mechanism. Make a few ↵Roy Frostig2010-08-041-1/+5
| | | | type-specific buffered writers as wrappers of buf_writer.
* More stdlib hashmap work. Add a simple test and XFAIL it due to a ↵Roy Frostig2010-08-031-0/+16
valgrind-spotted UMR.