Skip to content

Commit 98c0dc3

Browse files
committed
[lldb] Fix a test assertion after r372192
Summary: The `CHECK: frame:py: None` seems to have been a typo, causing build bot failures: ``` # CHECK: frame:py: None ^ <stdin>:1:1: note: scanning from here (lldb) command source -s 0 'E:/build_slave/lldb-x64-windows-ninja/build/tools/lldb\lit\lit-lldb-init' ^ <stdin>:23:1: note: possible intended match here frame:py: No value ^ ``` This update fixes the build bots. -- Reviewers: bkramer Reviewed By: bkramer Differential Revision: https://reviews.llvm.org/D67702 llvm-svn: 372221
1 parent 9c36de9 commit 98c0dc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/lit/Commands/command-script-import.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# RUN: %lldb -b -s %t.in -o 'script print("script: {}").format(lldb.frame)' %t.out | FileCheck %s
77

88
# Make sure that we don't have access to lldb.frame from the Python script.
9-
# CHECK: frame:py: None
9+
# CHECK: frame:py: No value
1010

1111
# Make sure that we do have access to lldb.frame from the script command.
1212
# CHECK: script: frame #0

0 commit comments

Comments
 (0)