Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
9b22110
Add powerpc-unknown-openbsd maintaince status
ChrisDenton Jun 14, 2024
2220ef8
Add PidFd::{kill, wait, try_wait}
the8472 Apr 17, 2024
210400a
to extract a pidfd we must consume the child
the8472 Jun 13, 2024
c4ddc86
Print the tested value in int_log tests
tgross35 Jun 18, 2024
d51b446
Improve conflict marker recovery
oriongonza Jun 7, 2024
9f63712
make this comment correct
oriongonza 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
af6ecd6
Rollup merge of #124101 - the8472:pidfd-methods, r=cuviper
matthiaskrgr Jun 21, 2024
6c4f668
Rollup merge of #126125 - dev-ardi:conflict-markers, r=estebank
matthiaskrgr Jun 21, 2024
854fa51
Rollup merge of #126481 - ChrisDenton:powerpc-unkown-openbsd, r=ehuss
matthiaskrgr Jun 21, 2024
47a09e5
Rollup merge of #126613 - tgross35:log-test-update, r=cuviper
matthiaskrgr Jun 21, 2024
a25b652
Rollup merge of #126617 - sayantn:veorq, r=workingjubilee
matthiaskrgr Jun 21, 2024
b338a7d
Rollup merge of #126700 - compiler-errors:fragment, r=fmease
matthiaskrgr Jun 21, 2024
a9859a0
Rollup merge of #126707 - ferrocene:hoverbear/fix-inaccessible-temp-d…
matthiaskrgr Jun 21, 2024
832109b
Rollup merge of #126767 - compiler-errors:static-foreign-item, r=spas…
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