Skip to content

Commit a6361c8

Browse files
committed
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 <llvm/llvm-project#196812>. Let's disable for now to not have `./x test` fail for contributors using lldb 22.
1 parent 06b13d5 commit a6361c8

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

tests/debuginfo/numeric-types.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,9 @@
213213
//@ lldb-command:v nz_i128
214214
//@ lldb-check:[...] 55 { 0 = { 0 = 55 } }
215215

216-
//@ lldb-command:v nz_isize
217-
//@ lldb-check:[...] 66 { 0 = { 0 = 66 } }
216+
// FIXME(#156886): "error: Invalid type: Cannot determine size"
217+
//(DISABLED) @ lldb-command:v nz_isize
218+
//(DISABLED) @ lldb-check:[...] 66 { 0 = { 0 = 66 } }
218219

219220
//@ lldb-command:v/d nz_u8
220221
//@ lldb-check:[...] 77 { 0 = { 0 = 77 } }
@@ -231,8 +232,9 @@
231232
//@ lldb-command:v nz_u128
232233
//@ lldb-check:[...] 111 { 0 = { 0 = 111 } }
233234

234-
//@ lldb-command:v nz_usize
235-
//@ lldb-check:[...] 122 { 0 = { 0 = 122 } }
235+
// FIXME(#156886): "error: Invalid type: Cannot determine size"
236+
//(DISABLED) @ lldb-command:v nz_usize
237+
//(DISABLED) @ lldb-check:[...] 122 { 0 = { 0 = 122 } }
236238

237239
use std::num::*;
238240
use std::sync::atomic::*;

0 commit comments

Comments
 (0)