diff options
author | Sean Callanan <scallanan@apple.com> | 2016-04-15 00:26:32 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2016-04-15 00:26:32 +0000 |
commit | 812e5595890da74e531c47b90db8ddd24b57fe8c (patch) | |
tree | af0fc8f9c48b3a20a4bd97c92bd09e586a73d606 /lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas | |
parent | eb1e321239a82993e5f94064704fd74b762a4710 (diff) | |
download | bcm5719-llvm-812e5595890da74e531c47b90db8ddd24b57fe8c.tar.gz bcm5719-llvm-812e5595890da74e531c47b90db8ddd24b57fe8c.zip |
Added a testcase for defining and using lambdas in the expression parser.
<rdar://problem/25739133>
llvm-svn: 266397
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/TestLambdas.py | 4 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/main.cpp | 17 |
2 files changed, 21 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/TestLambdas.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/TestLambdas.py new file mode 100644 index 00000000000..f08c0dcbda9 --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/TestLambdas.py @@ -0,0 +1,4 @@ +from lldbsuite.test import lldbinline +from lldbsuite.test import decorators + +lldbinline.MakeInlineTest(__file__, globals(), []) diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/main.cpp b/lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/main.cpp new file mode 100644 index 00000000000..8d387d2ffb6 --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/main.cpp @@ -0,0 +1,17 @@ +//===-- main.cpp ------------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include <stdio.h> + +int main (int argc, char const *argv[]) +{ + printf("Stop here\n"); //% self.runCmd("expression auto $add = [](int a, int b) { return a + b };") + //% self.expect("expression $add(2,3)", substrs = ['= 5']) + return 0; +} |