| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-07-17 | Fix doc link | Felix Rabe | -3/+3 | |
| The link for comparison: - https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types--sized (broken) - https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types-and-sized (fixed) This commit is the result of (first) searching via: find src -type f -print0 | xargs -0 fgrep -l dynamically-sized-types--sized and then replacing all relevant occurrences via: find src/{libcore,test/ui} -type f -print0 | xargs -0 sed -i.bak \ s/dynamically-sized-types--sized/dynamically-sized-types-and-sized/g find src/{libcore,test/ui} -type f -name '*.bak' -print0 | xargs -0 rm (Note: Commands run on macOS 10.13 (BSD). `sed -i.bak` should work on GNU/Linux as well, but not tested.) | ||||
| 2018-07-10 | Fix typo in error message E0277 | Rémy Rakic | -6/+6 | |
| 2018-06-19 | Update message for `!Sized` types | Esteban Küber | -9/+9 | |
| 2018-06-19 | Add link to book for `Sized` errors | Esteban Küber | -0/+3 | |
| 2018-06-19 | Add message to `rustc_on_unimplemented` attributes in core | Esteban Küber | -11/+14 | |
| 2018-05-16 | Remove empty files | Jane Lusby | -0/+0 | |
| 2018-05-10 | Fix tuple struct field spans | Esteban Küber | -1/+1 | |
| 2018-04-13 | Rename must-compile-successfully into compile-pass | Guillaume Gomez | -1/+1 | |
| 2018-03-19 | Reduce diagnostic verbosity by removing labels | Esteban Küber | -1/+1 | |
| 2018-03-14 | update tests | Guillaume Gomez | -6/+6 | |
| 2018-03-08 | Regenerate tests | Oliver Schneider | -17/+0 | |
| 2018-03-08 | Produce instead of pointers | Oliver Schneider | -5/+4 | |
| 2018-02-26 | Fix rebase | Vadim Petrochenkov | -2/+2 | |
| 2018-02-26 | Update UI tests | Vadim Petrochenkov | -25/+25 | |
| 2018-02-26 | Auto merge of #48337 - GuillaumeGomez:rustc-explain, r=estebank | bors | -0/+7 | |
| Rustc explain Fixes #48041. To make the review easier, I separated tests update to code update. Also, I used this script to generate new ui tests stderr: ```python from os import listdir from os.path import isdir, isfile, join PATH = "src/test/ui" def do_something(path): files = [join(path, f) for f in listdir(path)] for f in files: if isdir(f): do_something(f) continue if not isfile(f) or not f.endswith(".stderr"): continue x = open(f, "r") content = x.read().strip() if "error[E" not in content: continue errors = dict() for y in content.splitlines(): if y.startswith("error[E"): errors[y[6:11]] = True errors = sorted(errors.keys()) if len(errors) < 1: print("weird... {}".format(f)) continue if len(errors) > 1: content += "\n\nYou've got a few errors: {}".format(", ".join(errors)) content += "\nIf you want more information on an error, try using \"rustc --explain {}\"".format(errors[0]) else: content += "\n\nIf you want more information on this error, try using \"rustc --explain {}\"".format(errors[0]) content += "\n" x = open(f, "w") x.write(content) do_something(PATH) ``` | ||||
| 2018-02-25 | Update ui tests | Guillaume Gomez | -0/+7 | |
| 2018-02-19 | Update tests. | Jeffrey Seyfried | -2/+2 | |
| 2017-12-14 | Fix rebase | Vadim Petrochenkov | -0/+8 | |
| Update docs for custom normalization of test output | ||||
| 2017-12-14 | Remove NOTE/HELP annotations from UI tests | Vadim Petrochenkov | -29/+22 | |
| 2017-12-14 | Move compile-fail tests with NOTE/HELP annotations to UI | Vadim Petrochenkov | -0/+374 | |
