| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-07-27 | tests: Move run-pass tests without naming conflicts to ui | Vadim Petrochenkov | -36/+0 | |
| 2019-07-27 | tests: Add missing run-pass annotations | Vadim Petrochenkov | -0/+2 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -11/+0 | |
| 2015-04-08 | Remove pretty-expanded from failing tests | Alex Crichton | -1/+0 | |
| This commit removes pretty-expanded from all tests that wind up calling panic! one way or another now that its internals are unstable. | ||||
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -3/+3 | |
| Now that support has been removed, all lingering use cases are renamed. | ||||
| 2015-03-23 | rustdoc: Replace no-pretty-expanded with pretty-expanded | Brian Anderson | -0/+2 | |
| Now that features must be declared expanded source often does not compile. This adds 'pretty-expanded' to a bunch of test cases that still work. | ||||
| 2015-01-30 | Remove all `i` suffixes | Tobias Bucher | -3/+3 | |
| 2015-01-02 | Fix fallout in tests. | Niko Matsakis | -1/+1 | |
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -3/+3 | |
| This breaks a fair amount of code. The typical patterns are: * `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`; * `println!("{}", 3)`: change to `println!("{}", 3i)`; * `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`. RFC #30. Closes #6023. [breaking-change] | ||||
| 2014-05-28 | std: Remove format_strbuf!() | Alex Crichton | -3/+3 | |
| This was only ever a transitionary macro. | ||||
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -5/+5 | |
| [breaking-change] | ||||
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -5/+5 | |
| [breaking-change] | ||||
| 2014-05-14 | test: Remove all uses of `~str` from the test suite. | Patrick Walton | -13/+14 | |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -6/+6 | |
| 2013-09-30 | rpass: Remove usage of fmt! | Alex Crichton | -2/+2 | |
| 2013-09-25 | Fix run-pass tests to have 'pub fn main' | Alex Crichton | -1/+1 | |
| This is required by the check-fast target because each test is slurped up into a submodule. | ||||
| 2013-07-11 | Take default methods out from behind the flag. | Michael Sullivan | -1/+0 | |
| 2013-07-03 | Fix make_mono_id to take into account self types. Closes #7536. | Michael Sullivan | -3/+2 | |
| 2013-06-28 | Add tests for some default method things. | Michael Sullivan | -0/+45 | |
