s390x regression: failing io::tests::try_oom_error · Issue #133806 · rust-lang/rust (original) (raw)
As of this merge commit:
commit d53f0b1d8e261f2f3535f1cd165c714fc0b0b298
Merge: a2545fd6fc6 4a216a25d14
Author: bors <bors@rust-lang.org>
Date: Thu Nov 28 21:44:34 2024 +0000
Auto merge of #123244 - Mark-Simulacrum:share-inline-never-generics, r=saethlin
I'm seeing the following test case failure. Note that the test passes in both parents (a2545fd and 4a216a2) of the merge commit.
thread 'io::tests::try_oom_error' panicked at std/src/io/tests.rs:822:62:
called `Result::unwrap_err()` on an `Ok` value: ()
stack backtrace:
0: 0x3fff7dd6702 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::h0eec3d9053c23c0f
1: 0x3fff7e37506 - core::fmt::write::h66866b531685abe5
2: 0x3fff7dc575e - std::io::Write::write_fmt::h89ced3ac9904279e
3: 0x3fff7dd6570 - std::sys::backtrace::BacktraceLock::print::h363d5b9cad1f5c19
4: 0x3fff7df62e4 - std::panicking::default_hook::{{closure}}::ha4b8eaf1f6a37f57
5: 0x3fff7df60da - std::panicking::default_hook::hda41cc1e1c3b4efa
6: 0x2aa00430d78 - test::test_main::{{closure}}::h4d9e2859f981c511
7: 0x3fff7df6aa0 - std::panicking::rust_panic_with_hook::heff88192ef2a89fb
8: 0x3fff7dd6d52 - std::panicking::begin_panic_handler::{{closure}}::hff5589d5c45993a6
9: 0x3fff7dd69b4 - std::sys::backtrace::__rust_end_short_backtrace::h165daf71d9abcca8
10: 0x3fff7df63ca - rust_begin_unwind
11: 0x3fff7d4aa6a - core::panicking::panic_fmt::hec8c29ccd1751d1e
12: 0x3fff7d4b948 - core::result::unwrap_failed::h47cf11019e236d96
13: 0x2aa001c5a9a - core::ops::function::FnOnce::call_once::h5453841f675c42ec
14: 0x2aa00436d74 - test::__rust_begin_short_backtrace::h31f93d45aa944e21
15: 0x2aa00436f62 - test::run_test_in_process::h617ed5302028c350
16: 0x2aa0042a67e - std::sys::backtrace::__rust_begin_short_backtrace::hbc434a15ea7a090f
17: 0x2aa00425e14 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h2f86d2c09a8a35d2
18: 0x3fff7df33a8 - std::sys::pal::unix::thread::Thread:🆕:thread_start::hce74d4c3b42eec78
19: 0x3fff7bac3fa - start_thread
at /usr/src/debug/glibc-2.39-17.1.ibm.fc40.s390x/nptl/pthread_create.c:447:8
20: 0x3fff7c2bde0 - thread_start
at /usr/src/debug/glibc-2.39-17.1.ibm.fc40.s390x/misc/../sysdeps/unix/sysv/linux/s390/s390-64/clone3.S:71
21: 0x0 - <unknown>
I've tried debugging the test, but if I'm reading this correctly, the test function was already completely optimized out and replaced by a failed assertion at compile time:
Dump of assembler code for function _ZN4core3ops8function6FnOnce9call_once17h5453841f675c42ecE:
0x000002aa001c5a60 <+0>: stmg %r6,%r15,48(%r15)
0x000002aa001c5a66 <+6>: aghi %r15,-168
0x000002aa001c5a6a <+10>: lgr %r11,%r15
0x000002aa001c5a6e <+14>: lgrl %r1,0x2aa00568f28
0x000002aa001c5a74 <+20>: lb %r0,0(%r1)
0x000002aa001c5a7a <+26>: la %r4,167(%r11)
0x000002aa001c5a7e <+30>: larl %r2,0x2aa00481e7c <anon.6846cc147164699b42462cc8b979de03.18.llvm.3644326088524771271>
0x000002aa001c5a84 <+36>: lghi %r3,46
0x000002aa001c5a88 <+40>: larl %r5,0x2aa00545d08 <anon.6846cc147164699b42462cc8b979de03.17.llvm.3644326088524771271>
0x000002aa001c5a8e <+46>: larl %r6,0x2aa00546f78 <anon.6846cc147164699b42462cc8b979de03.473.llvm.3644326088524771271>
0x000002aa001c5a94 <+52>: brasl %r14,0x2aa0005c0e0 <_ZN4core6result13unwrap_failed17h47cf11019e236d96E@plt>
Note the unconditional call to unwrap_failed
.