diff options
| author | Adrian Prantl <aprantl@apple.com> | 2019-10-09 17:35:43 +0000 |
|---|---|---|
| committer | Adrian Prantl <aprantl@apple.com> | 2019-10-09 17:35:43 +0000 |
| commit | 0115c10328281567391855766fef8fbe57a1d4cc (patch) | |
| tree | f5c3232c37e50caaf5a2043e22fcebccee668bdd /lldb/test/Shell/Heap | |
| parent | 44e988ab14cb387eddfeacd1493792a6aa6aee81 (diff) | |
| download | bcm5719-llvm-0115c10328281567391855766fef8fbe57a1d4cc.tar.gz bcm5719-llvm-0115c10328281567391855766fef8fbe57a1d4cc.zip | |
Revert [test] Split LLDB tests into API, Shell & Unit
as it appears to have broken check-lldb.
This reverts r374184 (git commit 22314179f0660c172514b397060fd8f34b586e82)
llvm-svn: 374187
Diffstat (limited to 'lldb/test/Shell/Heap')
| -rw-r--r-- | lldb/test/Shell/Heap/Inputs/cstr.c | 17 | ||||
| -rw-r--r-- | lldb/test/Shell/Heap/heap-cstr.test | 10 |
2 files changed, 0 insertions, 27 deletions
diff --git a/lldb/test/Shell/Heap/Inputs/cstr.c b/lldb/test/Shell/Heap/Inputs/cstr.c deleted file mode 100644 index 2f9117b635e..00000000000 --- a/lldb/test/Shell/Heap/Inputs/cstr.c +++ /dev/null @@ -1,17 +0,0 @@ -#include <stdlib.h> - -int main(void) { - char *str; - int size = 9; //strlen("patatino") + 1 - str = (char *)malloc(sizeof(char)*size); - *(str+0) = 'p'; - *(str+1) = 'a'; - *(str+2) = 't'; - *(str+3) = 'a'; - *(str+4) = 't'; - *(str+5) = 'i'; - *(str+6) = 'n'; - *(str+7) = 'o'; - *(str+8) = '\0'; - return 0; -} diff --git a/lldb/test/Shell/Heap/heap-cstr.test b/lldb/test/Shell/Heap/heap-cstr.test deleted file mode 100644 index 00d19ffbe47..00000000000 --- a/lldb/test/Shell/Heap/heap-cstr.test +++ /dev/null @@ -1,10 +0,0 @@ -# REQUIRES: system-darwin -# RUN: %clang %p/Inputs/cstr.c -g -o %t -# RUN: %lldb -b -s %s -f %t | FileCheck %s - -br set -p return -command script import lldb.macosx.heap -run -cstr "patatino" - -# CHECK: {{.*}}: malloc( 16) -> {{.*}} |

