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/Inputs | |
| 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/Inputs')
| -rw-r--r-- | lldb/test/Shell/Heap/Inputs/cstr.c | 17 |
1 files changed, 0 insertions, 17 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; -} |

