diff options
author | Adrian McCarthy <amccarth@google.com> | 2016-04-27 21:53:19 +0000 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2016-04-27 21:53:19 +0000 |
commit | 37d3fac3a7e78fa3484428fed2787f2c655d52e6 (patch) | |
tree | 207f54ba72dbbb3d025aad19bfbaa9b931188e70 /lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter | |
parent | a3782da3e3ff4bbfc955d38cd03e8aa12f53f4d5 (diff) | |
download | bcm5719-llvm-37d3fac3a7e78fa3484428fed2787f2c655d52e6.tar.gz bcm5719-llvm-37d3fac3a7e78fa3484428fed2787f2c655d52e6.zip |
XFail TestIRInterpreter on Windows
There's an open bug with calling functions in the inferior. And Windows doesn't have the POSIX function getpid().
Differential Revision: http://reviews.llvm.org/D19626
llvm-svn: 267800
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter/TestIRInterpreter.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter/TestIRInterpreter.py b/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter/TestIRInterpreter.py index 00d7eb26bf9..e40307d5321 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter/TestIRInterpreter.py +++ b/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter/TestIRInterpreter.py @@ -38,6 +38,7 @@ class IRInterpreterTestCase(TestBase): self.runCmd("run", RUN_SUCCEEDED) @add_test_categories(['pyapi']) + @expectedFailureAll(oslist=['windows'], bugnumber="21765") # getpid() is POSIX, among other problems, see bug def test_ir_interpreter(self): self.build_and_run() |