-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 7 pull requests #116260
Rollup of 7 pull requests #116260
Commits on Sep 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 32c2ed7 - Browse repository at this point
Copy the full SHA 32c2ed7View commit details -
Move
fail
tests that need dependencies into their own folder, so th……at wasm tests don't build dependencies
Configuration menu - View commit details
-
Copy full SHA for c69e0c2 - Browse repository at this point
Copy the full SHA c69e0c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0d5f51c - Browse repository at this point
Copy the full SHA 0d5f51cView commit details -
Configuration menu - View commit details
-
Copy full SHA for e706367 - Browse repository at this point
Copy the full SHA e706367View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f4e7c6 - Browse repository at this point
Copy the full SHA 9f4e7c6View commit details
Commits on Sep 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 5f440dd - Browse repository at this point
Copy the full SHA 5f440ddView commit details
Commits on Sep 25, 2023
-
ref(bootstrap.py): add
eprint
functionjust like `print` but for `stderr`
Configuration menu - View commit details
-
Copy full SHA for 598f11a - Browse repository at this point
Copy the full SHA 598f11aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ec85a8 - Browse repository at this point
Copy the full SHA 1ec85a8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 71aea48 - Browse repository at this point
Copy the full SHA 71aea48View commit details -
Auto merge of rust-lang#3008 - oli-obk:ui_test_progress_bars, r=RalfJung
bump ui test crate The recommended way to run tests locally is `./miri bless -- -- --quiet`, which will show * progress bars * the currently running tests (allowing you to see which ones are still running towards the end of the test suite) * the output of the currently running tests (if they are slow). This means slow running tests can output lines to `stderr` and the last line will be shown after the test name and updated every few hundred milliseconds. As a side effect this PR also fixes rust-lang#2998 and only builds dependencies if any tests actually need them (this means that with the next ui_test update we'll be able to merge all our test suites). Also fixes rust-lang/miri#3052.
Configuration menu - View commit details
-
Copy full SHA for b4dc4f3 - Browse repository at this point
Copy the full SHA b4dc4f3View commit details -
fix normalization in backtrace-api tests
also remove a normalization rule that doesn't seem to apply
Configuration menu - View commit details
-
Copy full SHA for ee30aaf - Browse repository at this point
Copy the full SHA ee30aafView commit details -
Auto merge of rust-lang#3083 - saethlin:gc-history, r=oli-obk
GC the Stacked Borrows allocation history This handles the biggest contributor to rust-lang/miri#3080 The benchmark that this adds demonstrates the memory improvement here, but our benchmark setup doesn't record memory usage, and `hyperfine` doesn't support emitting memory usage stats. I ran this benchmark manually with `/usr/bin/time -v cargo +miri miri run` 🤷
Configuration menu - View commit details
-
Copy full SHA for 32c0afb - Browse repository at this point
Copy the full SHA 32c0afbView commit details -
Auto merge of rust-lang#3085 - RalfJung:test-norm, r=RalfJung
fix normalization in backtrace-api tests also remove a normalization rule that doesn't seem to apply
Configuration menu - View commit details
-
Copy full SHA for e86c68a - Browse repository at this point
Copy the full SHA e86c68aView commit details
Commits on Sep 27, 2023
-
Preparing for merge from rustc
The Miri Conjob Bot committedSep 27, 2023 Configuration menu - View commit details
-
Copy full SHA for fc0d833 - Browse repository at this point
Copy the full SHA fc0d833View commit details -
The Miri Conjob Bot committed
Sep 27, 2023 Configuration menu - View commit details
-
Copy full SHA for b1f5c66 - Browse repository at this point
Copy the full SHA b1f5c66View commit details -
Configuration menu - View commit details
-
Copy full SHA for c8a44b1 - Browse repository at this point
Copy the full SHA c8a44b1View commit details -
Auto merge of rust-lang#3087 - rust-lang:rustup-2023-09-27, r=RalfJung
Automatic sync from rustc
Configuration menu - View commit details
-
Copy full SHA for 1a3dd7e - Browse repository at this point
Copy the full SHA 1a3dd7eView commit details
Commits on Sep 28, 2023
-
Preparing for merge from rustc
The Miri Conjob Bot committedSep 28, 2023 Configuration menu - View commit details
-
Copy full SHA for 3b091cb - Browse repository at this point
Copy the full SHA 3b091cbView commit details -
The Miri Conjob Bot committed
Sep 28, 2023 Configuration menu - View commit details
-
Copy full SHA for f2623ac - Browse repository at this point
Copy the full SHA f2623acView commit details -
Auto merge of rust-lang#3089 - rust-lang:rustup-2023-09-28, r=RalfJung
Automatic sync from rustc
Configuration menu - View commit details
-
Copy full SHA for 024279a - Browse repository at this point
Copy the full SHA 024279aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 66bc682 - Browse repository at this point
Copy the full SHA 66bc682View commit details -
Configuration menu - View commit details
-
Copy full SHA for e0f4ab8 - Browse repository at this point
Copy the full SHA e0f4ab8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 255ca18 - Browse repository at this point
Copy the full SHA 255ca18View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3816c15 - Browse repository at this point
Copy the full SHA 3816c15View commit details -
Configuration menu - View commit details
-
Copy full SHA for 07f81cd - Browse repository at this point
Copy the full SHA 07f81cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for f1b7484 - Browse repository at this point
Copy the full SHA f1b7484View commit details -
make adt_const_params feature suggestion more consistent with others …
…and only suggest it when the type can probably work
Configuration menu - View commit details
-
Copy full SHA for b53a1b3 - Browse repository at this point
Copy the full SHA b53a1b3View commit details
Commits on Sep 29, 2023
-
Rollup merge of rust-lang#116133 - pouriya:refactor-bootstrap.py, r=a…
…lbertlarsan68 ref(bootstrap.py): add `eprint` function Implemented a 3-line function called `eprint` which is just like `print` but for `stderr`. So each `print(..., file=sys.stderr)` becomes `eprint(...)`. <br/> Testing `eprint` function: ```sh $ cat eprint.py ``` ```python import sys def eprint(*args, **kwargs): kwargs['file'] = sys.stderr print(*args, **kwargs) eval('eprint({})'.format(sys.argv[1])) ``` ```sh $ python3 eprint.py '"hello"' hello $ ``` ```sh $ python3 eprint.py '"hello"' 2>/dev/null $ ``` ```sh $ python3 eprint.py '"hello", "world", flush=True, file=sys.stdout' hello world $ ``` ```sh $ python3 eprint.py '"hello", "world", flush=True, file=sys.stdout' 2>/dev/null $ ```
Configuration menu - View commit details
-
Copy full SHA for f777e8c - Browse repository at this point
Copy the full SHA f777e8cView commit details -
Rollup merge of rust-lang#116201 - Jarcho:noop_fix, r=fee1-dead
Fix `noop_method_call` detection This needs to be merged before rust-lang#116198 can compile. The error occurs before the compiler is built so this needs to be a separate PR.
Configuration menu - View commit details
-
Copy full SHA for e814f1e - Browse repository at this point
Copy the full SHA e814f1eView commit details -
Rollup merge of rust-lang#116231 - DaniPopes:simpler-lint-array, r=Ni…
…lstrieb Remove `rustc_lint_defs::lint_array`
Configuration menu - View commit details
-
Copy full SHA for 0c45018 - Browse repository at this point
Copy the full SHA 0c45018View commit details -
Rollup merge of rust-lang#116234 - RalfJung:miri, r=RalfJung
Miri subtree update r? `@ghost`
Configuration menu - View commit details
-
Copy full SHA for 1ed00fe - Browse repository at this point
Copy the full SHA 1ed00feView commit details -
Rollup merge of rust-lang#116239 - cjgillot:issue-116212, r=WaffleLapkin
Only visit reachable nodes in SsaLocals. Fixes rust-lang#116212
Configuration menu - View commit details
-
Copy full SHA for 4f09f80 - Browse repository at this point
Copy the full SHA 4f09f80View commit details -
Rollup merge of rust-lang#116245 - flip1995:clippy-backport, r=Manish…
…earth Clippy backport: Move needless_raw_string_hashes to pedantic Really small backport this time. Context: rust-lang/rust-clippy#11415 (comment) I'd rather get this in 1.74 than waiting another release cycle. r? `@Manishearth` cc `@Mark-Simulacrum` This should be merged before beta is branched tomorrow.
Configuration menu - View commit details
-
Copy full SHA for 92234f9 - Browse repository at this point
Copy the full SHA 92234f9View commit details -
Rollup merge of rust-lang#116253 - asquared31415:adt_const_params_fea…
…ture, r=compiler-errors Make `adt_const_params` feature suggestion consistent with other features and improve when it is emitted Makes the suggestion to add `adt_const_params` formatted like every other feature gate (notably this makes it such that the playground recognizes it). Additionally improves the situations in which that help is emitted so that it's only emitted when the type would be valid or the type *could* be valid (using a slightly incorrect heuristic that favors suggesting the feature over not) instead of, for example, implying that adding the feature would allow the use of `String`. Also adds the "the only supported types are integers, `bool` and `char`" note to the errors on fn and raw pointers. r? `@compiler-errors`
Configuration menu - View commit details
-
Copy full SHA for 95262e4 - Browse repository at this point
Copy the full SHA 95262e4View commit details