From a6361c8127b0979645b5218d40a778db581c6bca Mon Sep 17 00:00:00 2001 From: Jieyou Xu Date: Sun, 24 May 2026 20:09:10 +0200 Subject: [PATCH] Disable `tests/debuginfo/numeric-types.rs` `v nz_{i,u}size` checks On lldb 22 (locally lldb 22.1.6) I see ``` v nz_isize error: Invalid type: Cannot determine size [...] v nz_usize error: Invalid type: Cannot determine size ``` AFAICT this might be an upstream issue, as reported in . Let's disable for now to not have `./x test` fail for contributors using lldb 22. --- tests/debuginfo/numeric-types.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/debuginfo/numeric-types.rs b/tests/debuginfo/numeric-types.rs index a27102da9692..31b439ba3f90 100644 --- a/tests/debuginfo/numeric-types.rs +++ b/tests/debuginfo/numeric-types.rs @@ -213,8 +213,9 @@ //@ lldb-command:v nz_i128 //@ lldb-check:[...] 55 { 0 = { 0 = 55 } } -//@ lldb-command:v nz_isize -//@ lldb-check:[...] 66 { 0 = { 0 = 66 } } +// FIXME(#156886): "error: Invalid type: Cannot determine size" +//(DISABLED) @ lldb-command:v nz_isize +//(DISABLED) @ lldb-check:[...] 66 { 0 = { 0 = 66 } } //@ lldb-command:v/d nz_u8 //@ lldb-check:[...] 77 { 0 = { 0 = 77 } } @@ -231,8 +232,9 @@ //@ lldb-command:v nz_u128 //@ lldb-check:[...] 111 { 0 = { 0 = 111 } } -//@ lldb-command:v nz_usize -//@ lldb-check:[...] 122 { 0 = { 0 = 122 } } +// FIXME(#156886): "error: Invalid type: Cannot determine size" +//(DISABLED) @ lldb-command:v nz_usize +//(DISABLED) @ lldb-check:[...] 122 { 0 = { 0 = 122 } } use std::num::*; use std::sync::atomic::*;