File: rmake.rs

package info (click to toggle)
rustc 1.89.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 906,624 kB
  • sloc: xml: 158,148; python: 34,888; javascript: 19,595; sh: 19,221; ansic: 13,046; cpp: 7,144; asm: 4,376; makefile: 692; lisp: 174; sql: 15
file content (47 lines) | stat: -rw-r--r-- 1,938 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// ignore-tidy-linelength
//! If the environment variables contain an invalid `jobserver-auth`, this used to cause an ICE
//! until this was fixed in [do not panic on failure to acquire jobserver token
//! #109694](https://github.com/rust-lang/rust/pull/109694).
//!
//! Proper handling has been added, and this test checks that helpful warnings and errors are
//! printed instead in case of a wrong jobserver. See
//! <https://github.com/rust-lang/rust/issues/46981>.

//@ only-linux
//@ ignore-cross-compile

#![deny(warnings)]

use run_make_support::{diff, rustc};

fn main() {
    let out = rustc()
        .stdin_buf(("fn main() {}").as_bytes())
        .env("MAKEFLAGS", "--jobserver-auth=1000,1000")
        .run_fail()
        .stderr_utf8();
    diff().expected_file("cannot_open_fd.stderr").actual_text("actual", out).run();

    let out = rustc()
        .stdin_buf(("fn main() {}").as_bytes())
        .input("-")
        .env("MAKEFLAGS", "--jobserver-auth=3,3")
        .set_aux_fd(3, std::fs::File::open("/dev/null").unwrap())
        .run()
        .stderr_utf8();
    diff().expected_file("not_a_pipe.stderr").actual_text("actual", out).run();

    // FIXME(#110321): the Makefile version had a disabled check:
    //
    // ```makefile
    // bash -c 'echo "fn main() {}" | MAKEFLAGS="--jobserver-auth=3,3" $(RUSTC) - 3< <(cat /dev/null)' 2>&1 | diff poisoned_pipe.stderr -
    // ```
    //
    // > the jobserver helper thread launched here gets starved out and doesn't run, while the
    // > coordinator thread continually processes work using the implicit jobserver token, never
    // > yielding long enough for the jobserver helper to do its work (and process the error).
    //
    // but is not necessarily worth fixing as it might require changing coordinator behavior that
    // might regress performance. See discussion at
    // <https://github.com/rust-lang/rust/issues/110321#issuecomment-1636914956>.
}