summaryrefslogtreecommitdiffstats
path: root/lldb/test/Shell/SymbolFile/DWARF/Inputs
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/Shell/SymbolFile/DWARF/Inputs')
-rw-r--r--lldb/test/Shell/SymbolFile/DWARF/Inputs/debug-line-basic.script14
-rw-r--r--lldb/test/Shell/SymbolFile/DWARF/Inputs/debug-types-basic.cpp15
-rw-r--r--lldb/test/Shell/SymbolFile/DWARF/Inputs/debug-types-expressions.cpp33
-rw-r--r--lldb/test/Shell/SymbolFile/DWARF/Inputs/dir-separator-no-comp-dir-relative-name.lldbinit3
-rw-r--r--lldb/test/Shell/SymbolFile/DWARF/Inputs/dir-separator-posix.lldbinit3
-rw-r--r--lldb/test/Shell/SymbolFile/DWARF/Inputs/dir-separator-windows.lldbinit7
-rw-r--r--lldb/test/Shell/SymbolFile/DWARF/Inputs/find-variable-file-2.cpp3
7 files changed, 0 insertions, 78 deletions
diff --git a/lldb/test/Shell/SymbolFile/DWARF/Inputs/debug-line-basic.script b/lldb/test/Shell/SymbolFile/DWARF/Inputs/debug-line-basic.script
deleted file mode 100644
index 7f3a1b9c2ff..00000000000
--- a/lldb/test/Shell/SymbolFile/DWARF/Inputs/debug-line-basic.script
+++ /dev/null
@@ -1,14 +0,0 @@
-PHDRS {
- text PT_LOAD;
-}
-SECTIONS {
- .shstrtab : { *(.shstrtab ) }
- .debug_info : { *(.debug_info ) }
- .debug_line : { *(.debug_line ) }
- .debug_str : { *(.debug_str ) }
- .debug_abbrev : { *(.debug_abbrev) }
-
- . = 0x201000;
- .text : { *(.text .text.f) } :text
- /DISCARD/ : { *(*) }
-}
diff --git a/lldb/test/Shell/SymbolFile/DWARF/Inputs/debug-types-basic.cpp b/lldb/test/Shell/SymbolFile/DWARF/Inputs/debug-types-basic.cpp
deleted file mode 100644
index defa8ba5c69..00000000000
--- a/lldb/test/Shell/SymbolFile/DWARF/Inputs/debug-types-basic.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-enum E { e1, e2, e3 };
-enum class EC { e1, e2, e3 };
-
-struct A {
- int i;
- long l;
- float f;
- double d;
- E e;
- EC ec;
-};
-
-extern constexpr A a{42, 47l, 4.2f, 4.7, e1, EC::e3};
-extern constexpr E e(e2);
-extern constexpr EC ec(EC::e2);
diff --git a/lldb/test/Shell/SymbolFile/DWARF/Inputs/debug-types-expressions.cpp b/lldb/test/Shell/SymbolFile/DWARF/Inputs/debug-types-expressions.cpp
deleted file mode 100644
index fe728cf040d..00000000000
--- a/lldb/test/Shell/SymbolFile/DWARF/Inputs/debug-types-expressions.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-struct A {
- int i = 47;
- int f() { return i; }
- virtual ~A() = default;
-};
-
-struct B: public A {
- int j = 42;
-};
-
-namespace ns {
-struct A {
- int i = 147;
- ::A getA();
- A();
-};
-A::A() = default;
-
-::A A::getA() {
- ::A a;
- a.i = i - 1;
- return a;
-}
-
-} // namespace ns
-
-int foo(A *a) {
- return a->f();
-}
-
-int main() {
- return foo(new B);
-}
diff --git a/lldb/test/Shell/SymbolFile/DWARF/Inputs/dir-separator-no-comp-dir-relative-name.lldbinit b/lldb/test/Shell/SymbolFile/DWARF/Inputs/dir-separator-no-comp-dir-relative-name.lldbinit
deleted file mode 100644
index 390408ec8cc..00000000000
--- a/lldb/test/Shell/SymbolFile/DWARF/Inputs/dir-separator-no-comp-dir-relative-name.lldbinit
+++ /dev/null
@@ -1,3 +0,0 @@
-image dump line-table a.c
-breakpoint set -f a.c -l 1
-breakpoint set -f foo/b.c -l 1
diff --git a/lldb/test/Shell/SymbolFile/DWARF/Inputs/dir-separator-posix.lldbinit b/lldb/test/Shell/SymbolFile/DWARF/Inputs/dir-separator-posix.lldbinit
deleted file mode 100644
index 73a8a491bb2..00000000000
--- a/lldb/test/Shell/SymbolFile/DWARF/Inputs/dir-separator-posix.lldbinit
+++ /dev/null
@@ -1,3 +0,0 @@
-image dump line-table a.c
-breakpoint set -f a.c -l 1
-breakpoint set -f /tmp/b.c -l 1
diff --git a/lldb/test/Shell/SymbolFile/DWARF/Inputs/dir-separator-windows.lldbinit b/lldb/test/Shell/SymbolFile/DWARF/Inputs/dir-separator-windows.lldbinit
deleted file mode 100644
index 8737aafc8a2..00000000000
--- a/lldb/test/Shell/SymbolFile/DWARF/Inputs/dir-separator-windows.lldbinit
+++ /dev/null
@@ -1,7 +0,0 @@
-image dump line-table a.c
-breakpoint set -f a.c -l 1
-breakpoint set -f C:/tmp/b.c -l 1
-
-# This will fail on non-windows systems because the path will by parsed
-# according to posix rules
-# breakpoint set -f 'C:\tmp\b.c' -l 1
diff --git a/lldb/test/Shell/SymbolFile/DWARF/Inputs/find-variable-file-2.cpp b/lldb/test/Shell/SymbolFile/DWARF/Inputs/find-variable-file-2.cpp
deleted file mode 100644
index cd02cb07c62..00000000000
--- a/lldb/test/Shell/SymbolFile/DWARF/Inputs/find-variable-file-2.cpp
+++ /dev/null
@@ -1,3 +0,0 @@
-namespace two {
-int foo;
-}
OpenPOWER on IntegriCloud