Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
1819b4f
rustdoc: make doctest span tweak a 2024 edition change
notriddle Oct 27, 2024
5cf6b8b
force-recompile library changes on download-rustc="if-unchanged"
onur-ozkan Oct 28, 2024
7e064e7
update download-rustc doc in config.example.toml
onur-ozkan Oct 28, 2024
7086dd8
compiler: `rustc_abi::Abi` => `BackendRepr`
workingjubilee Oct 29, 2024
6d5d8b5
cg_clif: `rustc_abi::Abi` => `BackendRepr`
workingjubilee Oct 29, 2024
0349209
cg_gcc: `rustc_abi::Abi` => `BackendRepr`
workingjubilee Oct 29, 2024
3059ed8
miri: `rustc_abi::Abi` => `BackendRepr`
workingjubilee Oct 29, 2024
11f9217
rust-analyzer: `rustc_abi::Abi` => `BackendRepr`
workingjubilee Oct 29, 2024
0b9d1eb
tests: cross-compile multi-platform ZST ABI tests
workingjubilee Oct 30, 2024
083a362
tests: Bless `rustc_abi::Abi::Aggregate` => `::Memory`
workingjubilee Oct 30, 2024
b6e1214
Remap impl-trait lifetimes on HIR instead of AST lowering.
cjgillot Aug 20, 2024
d693e19
Promote crashes tests to ui.
cjgillot Aug 22, 2024
d804ef8
Adapt comments.
cjgillot Oct 5, 2024
27c958f
Review comments.
cjgillot Oct 26, 2024
8f6e0a6
Promote test.
cjgillot Oct 26, 2024
2d74d8f
Actually capture all in-scope lifetimes.
cjgillot Oct 27, 2024
802f3a7
Merge HostPolarity and BoundConstness
compiler-errors Oct 29, 2024
ac7de1a
Ignore Windows due to its differing path syntax
notriddle Oct 30, 2024
6b60f03
Rollup merge of #129383 - cjgillot:opaque-noremap, r=compiler-errors,…
workingjubilee Oct 30, 2024
62ba25d
Rollup merge of #132210 - notriddle:notriddle/doctest-span-hack, r=Gu…
workingjubilee Oct 30, 2024
847b6fe
Rollup merge of #132246 - workingjubilee:campaign-on-irform, r=compil…
workingjubilee Oct 30, 2024
f90abe7
Rollup merge of #132267 - onur-ozkan:rustc-if-unchanged-force-library…
workingjubilee Oct 30, 2024
7b19508
Rollup merge of #132344 - compiler-errors:same-thing, r=lcnr
workingjubilee Oct 30, 2024
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Ignore Windows due to its differing path syntax
  • Loading branch information
notriddle committed Oct 30, 2024
commit ac7de1a0d925af4504f9fb100be071e2fd346d13
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

running 1 test
test $DIR/relative-path-include-bytes-132203.rs - (line 17) ... FAILED
test $DIR/relative-path-include-bytes-132203.rs - (line 18) ... FAILED

failures:

---- $DIR/relative-path-include-bytes-132203.rs - (line 17) stdout ----
---- $DIR/relative-path-include-bytes-132203.rs - (line 18) stdout ----
error: couldn't read `$DIR/relative-dir-empty-file`: No such file or directory (os error 2)
--> $DIR/relative-path-include-bytes-132203.rs:18:9
--> $DIR/relative-path-include-bytes-132203.rs:19:9
|
LL | let x = include_bytes!("relative-dir-empty-file");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand All @@ -18,7 +18,7 @@ error: aborting due to 1 previous error
Couldn't compile the test.

failures:
$DIR/relative-path-include-bytes-132203.rs - (line 17)
$DIR/relative-path-include-bytes-132203.rs - (line 18)

test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in $TIME

Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//@ ignore-windows
//@ revisions: edition2015 edition2024
//@[edition2015]edition:2015
//@[edition2015]check-fail
Expand Down
Loading