[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.

llvm-svn: 365719
This commit is contained in:
Raphael Isemann 2019-07-11 00:35:31 +00:00
parent 597dc0061f
commit df9051e7cf
1 changed files with 2 additions and 1 deletions

View File

@ -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"])])