| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-12-31 | Move array-slice-vec-related tests | Yuki Okushi | -9/+331 | |
| 2020-12-29 | Remove `compile-fail` test suite | Vadim Petrochenkov | -1/+1 | |
| 2020-12-26 | update tests | Bastian Kauschke | -1/+0 | |
| 2020-12-22 | Migrate standard library away from compare_and_swap | Linus Färnstrand | -3/+18 | |
| 2020-11-29 | Update tests to remove old numeric constants | bstrie | -1/+0 | |
| Part of #68490. Care has been taken to leave the old consts where appropriate, for testing backcompat regressions, module shadowing, etc. The intrinsics docs were accidentally referring to some methods on f64 as std::f64, which I changed due to being contrary with how we normally disambiguate the shadow module from the primitive. In one other place I changed std::u8 to std::ops since it was just testing path handling in macros. For places which have legitimate uses of the old consts, deprecated attributes have been optimistically inserted. Although currently unnecessary, they exist to emphasize to any future deprecation effort the necessity of these specific symbols and prevent them from being accidentally removed. | ||||
| 2020-10-17 | Move subslice pattern tests to alloc/tests/slice.rs | Alexis Bourget | -126/+0 | |
| 2020-10-17 | Move vec-macro-repeat test | Alexis Bourget | -15/+0 | |
| 2020-10-17 | Suggest minimal subset features in `incomplete_features` lint | Yuki Okushi | -0/+1 | |
| 2020-09-21 | Move vec-cycle-wrapped test | Alexis Bourget | -50/+0 | |
| 2020-09-21 | Move vec-cycle test | Alexis Bourget | -39/+0 | |
| 2020-09-21 | Move vec-slice-drop test | Alexis Bourget | -31/+0 | |
| 2020-09-21 | Move array cycle test | Alexis Bourget | -31/+0 | |
| 2020-09-07 | Rollup merge of #76324 - ayushmishra2005:move_vec_tests_in_library, r=matklad | Dylan DPC | -62/+0 | |
| Move Vec slice UI tests in library Moved some of Vec slice UI tests in Library as a part of #76268 r? @matklad | ||||
| 2020-09-07 | Rollup merge of #76273 - CraftSpider:master, r=matklad | Dylan DPC | -69/+0 | |
| Move some Vec UI tests into alloc unit tests A bit of work towards #76268, makes a number of the Vec UI tests that are simply running code into unit tests. Ensured that they are being run when testing liballoc locally. | ||||
| 2020-09-04 | Move Vec slice UI tests in library | Ayush Kumar Mishra | -62/+0 | |
| 2020-09-03 | Remove vec-to_str.rs, merge the remaining test in with vec | Rune Tynan | -7/+0 | |
| 2020-09-03 | Remove a number of vec UI tests, make them unit tests in the alloc library | Rune Tynan | -62/+0 | |
| 2020-09-02 | pretty: trim paths of unique symbols | Dan Aloni | -3/+3 | |
| If a symbol name can only be imported from one place for a type, and as long as it was not glob-imported anywhere in the current crate, we can trim its printed path and print only the name. This has wide implications on error messages with types, for example, shortening `std::vec::Vec` to just `Vec`, as long as there is no other `Vec` importable anywhere. This adds a new '-Z trim-diagnostic-paths=false' option to control this feature. On the good path, with no diagnosis printed, we should try to avoid issuing this query, so we need to prevent trimmed_def_paths query on several cases. This change also relies on a previous commit that differentiates between `Debug` and `Display` on various rustc types, where the latter is trimmed and presented to the user and the former is not. | ||||
| 2020-06-28 | Update tests | Dylan MacKenzie | -1/+2 | |
| 2020-06-26 | Show the values and computation that would overflow a const evaluation or ↵ | Oliver Scherer | -1/+1 | |
| propagation | ||||
| 2020-05-16 | Rollup merge of #72045 - RalfJung:incomplete-unsound, r=petrochenkov | Ralf Jung | -2/+3 | |
| Incomplete features can also be unsound Some incomplete features do not just ICE, they are also currently unsound (e.g. https://github.com/rust-lang/rust/pull/72029, and also `specialization` -- which is not yet marked incomplete but [should be](https://github.com/rust-lang/rust/pull/71420)). This makes the message reflect that. While at it I also added a link to the tracking issue, which hopefully should explain what is incomplete/unsound about the feature. | ||||
| 2020-05-11 | Rollup merge of #72052 - lcnr:const_pprint, r=ecstatic-morse | Dylan DPC | -1/+1 | |
| display `ConstKind::Param` | ||||
| 2020-05-09 | display `ConstKind::Param` | Bastian Kauschke | -1/+1 | |
| 2020-05-09 | adjust tests | Ralf Jung | -2/+3 | |
| 2020-05-08 | Skip tests on emscripten | Yuki Okushi | -0/+3 | |
| 2020-05-06 | Move tests from `test/run-fail` to UI | Yuki Okushi | -0/+21 | |
| 2020-04-11 | rustc: Add a warning count upon completion | RoccoDev | -1/+1 | |
| 2020-04-01 | Rollup merge of #70081 - lcnr:issue68387, r=varkor | Dylan DPC | -1/+1 | |
| add `unused_braces` lint Add the lint `unused_braces` which is warn by default. `unused_parens` is also extended and now checks anon consts. closes #68387 r? @varkor | ||||
| 2020-03-31 | update tests | Bastian Kauschke | -1/+1 | |
| 2020-03-30 | update tests, improve variable names | Bastian Kauschke | -0/+31 | |
| 2020-03-30 | add test for array len inference | Bastian Kauschke | -0/+32 | |
| 2020-02-13 | fix extra subslice lowering | Mazdak Farrokhzad | -0/+44 | |
| 2020-01-18 | slice_patterns: organize some tests | Mazdak Farrokhzad | -0/+107 | |
| 2020-01-18 | slice_patterns: remove gates in tests | Mazdak Farrokhzad | -15/+2 | |
| 2019-12-21 | Add more tests for slice patterns | Matthew Jasper | -0/+194 | |
| 2019-07-30 | Subslice patterns: Test passing static & dynamic semantics. | Mazdak Farrokhzad | -0/+128 | |
| 2019-07-28 | Use new 'p @ ..' syntax in tests. | Mazdak Farrokhzad | -26/+11 | |
| 2019-07-27 | tests: Move run-pass tests without naming conflicts to ui | Vadim Petrochenkov | -0/+1496 | |
