From 812e5595890da74e531c47b90db8ddd24b57fe8c Mon Sep 17 00:00:00 2001 From: Sean Callanan Date: Fri, 15 Apr 2016 00:26:32 +0000 Subject: Added a testcase for defining and using lambdas in the expression parser. llvm-svn: 266397 --- .../lldbsuite/test/lang/cpp/lambdas/TestLambdas.py | 4 ++++ .../Python/lldbsuite/test/lang/cpp/lambdas/main.cpp | 17 +++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/TestLambdas.py create mode 100644 lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/main.cpp (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas') 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 + +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; +} -- cgit v1.2.3