[Lldb-commits] [lldb] r353894 - [testsuite] Convert TestSingleQuote to lit.

Davide Italiano via lldb-commits lldb-commits at lists.llvm.org
Tue Feb 12 14:57:57 PST 2019


Author: davide
Date: Tue Feb 12 14:57:57 2019
New Revision: 353894

URL: http://llvm.org/viewvc/llvm-project?rev=353894&view=rev
Log:
[testsuite] Convert TestSingleQuote to lit.

Nothing crazy, this is pretty mechanical.

Added:
    lldb/trunk/lit/Driver/Inputs/hello.c
    lldb/trunk/lit/Driver/TestSingleQuote.test
Removed:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/

Added: lldb/trunk/lit/Driver/Inputs/hello.c
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/Driver/Inputs/hello.c?rev=353894&view=auto
==============================================================================
--- lldb/trunk/lit/Driver/Inputs/hello.c (added)
+++ lldb/trunk/lit/Driver/Inputs/hello.c Tue Feb 12 14:57:57 2019
@@ -0,0 +1,3 @@
+int main(void) {
+  return 0;
+}

Added: lldb/trunk/lit/Driver/TestSingleQuote.test
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/Driver/TestSingleQuote.test?rev=353894&view=auto
==============================================================================
--- lldb/trunk/lit/Driver/TestSingleQuote.test (added)
+++ lldb/trunk/lit/Driver/TestSingleQuote.test Tue Feb 12 14:57:57 2019
@@ -0,0 +1,5 @@
+# RUN: %clang %p/Inputs/hello.c -g -o "%t-'pat"
+# RUN: %lldb -s %s "%t-'pat" | FileCheck %s
+
+br set -p return
+# CHECK: Breakpoint 1: where = TestSingleQuote.test.tmp-'pat`main




More information about the lldb-commits mailing list