From 6eb40bf51b768672218539935f60ce55ae6ad750 Mon Sep 17 00:00:00 2001 From: Jordan Rupprecht Date: Wed, 12 Oct 2022 20:43:45 -0700 Subject: [PATCH] [test] Fix a test that wasn't running The functionality is fine (we don't run the breakpoint command twice), but this test forgot to call `FileCheck` and isn't checking the same value isn't there twice.. --- lldb/test/Shell/Breakpoint/breakpoint-command.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/test/Shell/Breakpoint/breakpoint-command.test b/lldb/test/Shell/Breakpoint/breakpoint-command.test index 6104713..1236c55 100644 --- a/lldb/test/Shell/Breakpoint/breakpoint-command.test +++ b/lldb/test/Shell/Breakpoint/breakpoint-command.test @@ -1,5 +1,5 @@ # RUN: %build %p/Inputs/dummy-target.c -o %t.out -# RUN: %lldb %t.out -o 'b main' -o 'break command add 1 -o "script print(95000 + 126)"' -o 'r' +# RUN: %lldb %t.out -o 'b main' -o 'break command add 1 -o "script print(95000 + 126)"' -o 'r' | FileCheck %s -# CHECK: 95125 +# CHECK: 95126 # CHECK-NOT: 95126 -- 2.7.4