[Lldb-commits] [lldb] r365719 - [lldb] Disable TestDollarInVariable.py on Windows

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Wed Jul 10 17:35:31 PDT 2019


Author: teemperor
Date: Wed Jul 10 17:35:31 2019
New Revision: 365719

URL: http://llvm.org/viewvc/llvm-project?rev=365719&view=rev
Log:
[lldb] Disable TestDollarInVariable.py on Windows

It seems on Windows we don't handle the lldb_expr_result variable correctly:

```
AssertionError: False is not True : 'expr $__lldb_expr_result' returns expected result, got '(int &) $0 = 0x0000000000000000'
```

I'll disable the test until I can find a way to debug this on Windows.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/expression_command/dollar-in-variable/TestDollarInVariable.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/expression_command/dollar-in-variable/TestDollarInVariable.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/expression_command/dollar-in-variable/TestDollarInVariable.py?rev=365719&r1=365718&r2=365719&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/expression_command/dollar-in-variable/TestDollarInVariable.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/expression_command/dollar-in-variable/TestDollarInVariable.py Wed Jul 10 17:35:31 2019
@@ -1,4 +1,5 @@
 from lldbsuite.test import lldbinline
 from lldbsuite.test import decorators
 
-lldbinline.MakeInlineTest(__file__, globals(), None)
+lldbinline.MakeInlineTest(__file__, globals(),
+  [lldbinline.expectedFailureAll(oslist=["windows"])])




More information about the lldb-commits mailing list