about summary refs log tree commit diff
path: root/src/test/stdtest
AgeCommit message (Expand)AuthorLines
2011-12-16reorder args to the various vec, option fns so blk comes lastNiko Matsakis-25/+25
2011-12-15stdlib: Add a str::split_str() to split on a delimiter string of any lengthPatrick Walton-0/+14
2011-12-14Moved std::math to std::coreStefan Plantikow-1/+1
2011-12-14std: export math_f* as math::f* submods and use tailcalls in std::mathStefan Plantikow-0/+3
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-76/+146
2011-12-07Disallow binding by-mut-ref and by-move argumentsMarijn Haverbeke-2/+2
2011-12-01stdlib: Implement some preliminary libuv bindingsBrian Anderson-0/+45
2011-11-29update io test to use tmp directory, and update configure to create itNiko Matsakis-1/+1
2011-11-28Ignore some should_fail tests on win32Brian Anderson-0/+2
2011-11-28c_vec: add testsJoshua Wise-0/+58
2011-11-24Comment-out some math tests that produce different results on win32Brian Anderson-7/+9
2011-11-24std: math: renaming and documentation fixesStefan Plantikow-1/+2
2011-11-24std: factored f32 and f64 out from mathStefan Plantikow-2/+4
2011-11-24std: added missing calls to math; covers C95 completely now, includes testsStefan Plantikow-9/+225
2011-11-24std: rewrote math to support most C95 libmath calls on f32, f64 and floatStefan Plantikow-6/+6
2011-11-22Add fs::rmdir() and tempfile/gen_str() tests.Elly Jones-0/+29
2011-11-21stdlib: added (2,3,4)-valued logic ADTsStefan Plantikow-0/+292
2011-11-21Ignore test_log_functions test for nowMarijn Haverbeke-0/+1
2011-11-21Added logarithm functions for floats to std::mathStefan Plantikow-0/+39
2011-11-18Add tests for unsafe::reinterpret_castBrian Anderson-0/+14
2011-11-18stdlib: Add tests for sys::size_of and sys::align_ofBrian Anderson-0/+45
2011-11-18Update stdlib, compiler, and tests to new kind systemMarijn Haverbeke-2/+2
2011-11-17remove compile-command from local variable blocksNiko Matsakis-6/+0
2011-11-16refactor all unix typesNiko Matsakis-6/+8
2011-11-16Fix S_IRUSR/S_IWUSR constants on mac. Closes #726Brian Anderson-6/+0
2011-11-15Replaced constant functions with actual constants in std and updated testsStefan Plantikow-22/+22
2011-11-10str: add escape()Elly Jones-0/+8
2011-11-10Cleanup unused imports in testsHaitao Li-4/+0
2011-11-08Remove all uses of native cdecl except for those that yieldBrian Anderson-5/+5
2011-11-07json: betterify for brsonElly Jones-6/+55
2011-11-06[Test] rope.rs: testing concatDavid Rajchenbach-Teller-0/+16
2011-11-05Fixup: forgotten stdtest/rope.rsDavid Rajchenbach-Teller-0/+148
2011-11-05stdlib: Added a small rope libraryDavid Rajchenbach-Teller-0/+1
2011-11-05uint.rs: added functions div_ceil, div_floor, div_roundDavid Rajchenbach-Teller-0/+7
2011-11-02Add vec::permute to the standard library (#1013)Matt Brubeck-0/+21
2011-11-02Rename car/cdr to head/tail in std::listMarijn Haverbeke-8/+8
2011-11-02Make ptr::addr_of return an immutable vec, add mut_addr_ofMarijn Haverbeke-1/+1
2011-11-01Ignore another test involving failure on windowsBrian Anderson-0/+1
2011-11-01Ignore should_fail tests on windowsBrian Anderson-0/+10
2011-11-01Add should_fail annotation for unit testsMatt Brubeck-5/+82
2011-10-31Fix the filenames used in some IO testsBrian Anderson-4/+4
2011-10-31Add a char::to_digit functionMatt Brubeck-0/+29
2011-10-31Correct handling of non-numeric chars in parse_bufMatt Brubeck-1/+43
2011-10-31Rename std::str::chars to iter_charsMarijn Haverbeke-2/+2
2011-10-31Add a way to iterate over a str's chars to std::strMarijn Haverbeke-0/+13
2011-10-30Fix int::parse_buf for negative numbers (#1102)Matt Brubeck-1/+16
2011-10-30Make float::from_str ignore whitespace (#1089)Matt Brubeck-1/+22
2011-10-29Cleanup the existing platform-specific ignored testsBrian Anderson-55/+11
2011-10-29stdlib: Add vec::concat to concatenate a vector of vectorsBrian Anderson-0/+5
2011-10-29stdlib: Make io failures recoverable by returning a resultBrian Anderson-2/+48