Skip to content
/ rust Public
forked from rust-lang/rust

Commit 3e6f6de

Browse files
authored
Rollup merge of rust-lang#126917 - ferrocene:hoverbear/riscv64-inaccessible-temp-dir-resolution, r=jieyouxu
Disable rmake test `inaccessible-temp-dir` on riscv64 In rust-lang#126279 the `inaccessible-temp-dir` test was moved to rmake, I followed up with a 'fix' derived from rust-lang#126355 in rust-lang#126707. That 'fix' was misguided and hiding the true issue of the linker being incorrect for `riscv64gc-unknown-linux-gnu` (addressed in rust-lang#126916). Unfortunately, even with the linker fixed, this test doesn't work. I asked myself why this appeared to work on other platforms and investigated why. Both the containers for `armhf-gnu` and `riscv64gc` run their tests as `root` and have `NO_CHANGE_USER` set: https://github.com/rust-lang/rust/blob/553a69030e5a086eb3841d020db8c9c463948c72/src/ci/docker/host-x86_64/disabled/riscv64gc-gnu/Dockerfile#L99 This means the tests are run as `root`. As `root`, it's perfectly normal and reasonable to violate permission checks this way: ```bash $ sudo mkdir scratch $ sudo chmod o-w scratch $ sudo mkdir scratch/backs $ ``` Because of this, this PR makes the test ignored on `riscv64gc` for now. As an alternative, I believe the best long-term strategy would be to not run the tests as `root` for this job. ## Testing > [!NOTE] > `riscv64gc-unknown-linux-gnu` is a [**Tier 2 with Host Tools** platform](https://doc.rust-lang.org/beta/rustc/platform-support.html), all tests may not necessarily pass! This change should only ignore `inaccessible-temp-dir` and not affect other tests. You can test out the job locally: ```sh mv src/ci/docker/host-x86_64/disabled/riscv64gc-gnu src/ci/docker/host-x86_64/riscv64gc-gnu DEPLOY=1 ./src/ci/docker/run.sh riscv64gc-gnu ```
2 parents b1b9804 + 8c353cb commit 3e6f6de

File tree

1 file changed

+6
-2
lines changed
  • tests/run-make/inaccessible-temp-dir

1 file changed

+6
-2
lines changed

tests/run-make/inaccessible-temp-dir/rmake.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,18 @@
1313
// use a directory with non-existing parent like `/does-not-exist/output`.
1414
// See https://github.com/rust-lang/rust/issues/66530
1515

16+
//@ ignore-riscv64
17+
// FIXME: The riscv build container runs as root, and can always write
18+
// into `inaccessible/tmp`. Ideally, the riscv64-gnu docker container
19+
// would use a non-root user, but this leads to issues with
20+
// `mkfs.ext4 -d`, as well as mounting a loop device for the rootfs.
1621
//@ ignore-arm
1722
// Reason: linker error on `armhf-gnu`
1823
//@ ignore-windows
1924
// Reason: `set_readonly` has no effect on directories
2025
// and does not prevent modification.
2126

22-
use run_make_support::{fs_wrapper, rustc, target, test_while_readonly};
27+
use run_make_support::{fs_wrapper, rustc, test_while_readonly};
2328

2429
fn main() {
2530
// Create an inaccessible directory.
@@ -28,7 +33,6 @@ fn main() {
2833
// Run rustc with `-Z temps-dir` set to a directory *inside* the inaccessible one,
2934
// so that it can't create `tmp`.
3035
rustc()
31-
.target(target())
3236
.input("program.rs")
3337
.arg("-Ztemps-dir=inaccessible/tmp")
3438
.run_fail()

0 commit comments

Comments
 (0)