From d4e4f9a0eeef6d91d3097aec1e94bf237ce2d4a6 Mon Sep 17 00:00:00 2001 From: fallofpheonix Date: Wed, 20 May 2026 14:20:48 +0530 Subject: [PATCH] Use print instead of po in debuginfo path test --- tests/debuginfo/path.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/debuginfo/path.rs b/tests/debuginfo/path.rs index 27b518fd8975..547ab4d43b7c 100644 --- a/tests/debuginfo/path.rs +++ b/tests/debuginfo/path.rs @@ -7,13 +7,9 @@ //@ lldb-command:run //@ lldb-command:print pathbuf -//@ lldb-check:[...] "/some/path" { inner = "/some/path" { inner = { inner = size=10 { [0] = '/' [1] = 's' [2] = 'o' [3] = 'm' [4] = 'e' [5] = '/' [6] = 'p' [7] = 'a' [8] = 't' [9] = 'h' } } } } -//@ lldb-command:po pathbuf -//@ lldb-check:"/some/path" +//@ lldb-check:[...] "/some/path" [...] //@ lldb-command:print path -//@ lldb-check:[...] "/some/path" { data_ptr = [...] length = 10 } -//@ lldb-command:po path -//@ lldb-check:"/some/path" +//@ lldb-check:[...] "/some/path" [...] use std::path::Path;