diff options
author | Tatyana Krasnukha <tatyana@synopsys.com> | 2019-11-21 14:12:10 +0300 |
---|---|---|
committer | Tatyana Krasnukha <tatyana@synopsys.com> | 2019-11-21 15:03:37 +0300 |
commit | ffc4ff868fcca29080dcc90e223b582c4ccfc574 (patch) | |
tree | e5fab42760c47019ce40aeb1d195b63920fc61d5 /lldb/packages/Python/lldbsuite/test/commands/expression/completion-in-lambda-and-unnnamed-class/main.cpp | |
parent | 7fa976d57a1e2ab735212e5d9fc13cc38c4c81e9 (diff) | |
download | bcm5719-llvm-ffc4ff868fcca29080dcc90e223b582c4ccfc574.tar.gz bcm5719-llvm-ffc4ff868fcca29080dcc90e223b582c4ccfc574.zip |
[lldb][NFC] Remove test directory completely
The test was moved to "completion-in-lambda-and-unnamed-class" by D66175.
+ Fix typo in the directory name.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/commands/expression/completion-in-lambda-and-unnnamed-class/main.cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/expression/completion-in-lambda-and-unnnamed-class/main.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion-in-lambda-and-unnnamed-class/main.cpp b/lldb/packages/Python/lldbsuite/test/commands/expression/completion-in-lambda-and-unnnamed-class/main.cpp deleted file mode 100644 index a3d8ab6532e..00000000000 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/completion-in-lambda-and-unnnamed-class/main.cpp +++ /dev/null @@ -1,11 +0,0 @@ -int main() { - []() - { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList()) - } - (); - struct { - void f() - { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList()) - } - } A; -} |