[Lldb-commits] [lldb] r372221 - [lldb] Fix a test assertion after r372192

Krasimir Georgiev via lldb-commits lldb-commits at lists.llvm.org
Wed Sep 18 05:41:18 PDT 2019


Author: krasimir
Date: Wed Sep 18 05:41:17 2019
New Revision: 372221

URL: http://llvm.org/viewvc/llvm-project?rev=372221&view=rev
Log:
[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

Modified:
    lldb/trunk/lit/Commands/command-script-import.test

Modified: lldb/trunk/lit/Commands/command-script-import.test
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/Commands/command-script-import.test?rev=372221&r1=372220&r2=372221&view=diff
==============================================================================
--- lldb/trunk/lit/Commands/command-script-import.test (original)
+++ lldb/trunk/lit/Commands/command-script-import.test Wed Sep 18 05:41:17 2019
@@ -6,7 +6,7 @@
 # RUN: %lldb -b -s %t.in -o 'script print("script: {}").format(lldb.frame)' %t.out | FileCheck %s
 
 # Make sure that we don't have access to lldb.frame from the Python script.
-# CHECK: frame:py: None
+# CHECK: frame:py: No value
 
 # Make sure that we do have access to lldb.frame from the script command.
 # CHECK: script: frame #0




More information about the lldb-commits mailing list