Skip to content
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 8 pull requests #126781

Merged
merged 19 commits into from
Jun 21, 2024
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
9b22110
Add powerpc-unknown-openbsd maintaince status
ChrisDenton Jun 14, 2024
c4ddc86
Print the tested value in int_log tests
tgross35 Jun 18, 2024
d51b446
Improve conflict marker recovery
dev-ardi Jun 7, 2024
9f63712
make this comment correct
dev-ardi Jun 10, 2024
b6d20d1
Add the target-features
sayantn Jun 18, 2024
1e1b3fc
Fix stderr cases
sayantn Jun 18, 2024
50d1efa
Add a test demonstrating the problem
compiler-errors Jun 19, 2024
3e8898a
Allow naming expr_2021 in all editions
compiler-errors Jun 19, 2024
a656bb6
Specify target for inaccessible-temp-dir rmake test
Hoverbear Jun 19, 2024
3e59f0c
StaticForeignItem and StaticItem are the same
compiler-errors Jun 20, 2024
d6efcbb
Fix another assertion failure for some Expect diagnostics.
nnethercote Jun 21, 2024
73cc4ec
Rollup merge of #126125 - dev-ardi:conflict-markers, r=estebank
matthiaskrgr Jun 21, 2024
0c1d396
Rollup merge of #126481 - ChrisDenton:powerpc-unkown-openbsd, r=ehuss
matthiaskrgr Jun 21, 2024
7a827d3
Rollup merge of #126613 - tgross35:log-test-update, r=cuviper
matthiaskrgr Jun 21, 2024
2b7f6e2
Rollup merge of #126617 - sayantn:veorq, r=workingjubilee
matthiaskrgr Jun 21, 2024
3bd84f1
Rollup merge of #126700 - compiler-errors:fragment, r=fmease
matthiaskrgr Jun 21, 2024
520118b
Rollup merge of #126707 - ferrocene:hoverbear/fix-inaccessible-temp-d…
matthiaskrgr Jun 21, 2024
f577d80
Rollup merge of #126767 - compiler-errors:static-foreign-item, r=spas…
matthiaskrgr Jun 21, 2024
d86736c
Rollup merge of #126774 - nnethercote:fix-126751, r=oli-obk
matthiaskrgr Jun 21, 2024
File filter

Filter by extension

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
Specify target for inaccessible-temp-dir rmake test
  • Loading branch information
Hoverbear committed Jun 20, 2024
commit a656bb6eb26d9ba63eac5f619b885230b97e8a4a
3 changes: 2 additions & 1 deletion tests/run-make/inaccessible-temp-dir/rmake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// Reason: `set_readonly` has no effect on directories
// and does not prevent modification.

use run_make_support::{fs_wrapper, rustc, test_while_readonly};
use run_make_support::{fs_wrapper, rustc, target, test_while_readonly};

fn main() {
// Create an inaccessible directory.
Expand All @@ -28,6 +28,7 @@ fn main() {
// Run rustc with `-Z temps-dir` set to a directory *inside* the inaccessible one,
// so that it can't create `tmp`.
rustc()
.target(&target())
.input("program.rs")
.arg("-Ztemps-dir=inaccessible/tmp")
.run_fail()
Expand Down
Loading