diff options
| author | Todd Fiala <todd.fiala@gmail.com> | 2014-06-27 20:07:03 +0000 |
|---|---|---|
| committer | Todd Fiala <todd.fiala@gmail.com> | 2014-06-27 20:07:03 +0000 |
| commit | 6ce5b63019c85347ef0816436d574f20a68a87c1 (patch) | |
| tree | 29f7ee5c4d52694e84e7072a3a55761c0cbad31f /lldb/test/functionalities/object-file/bin | |
| parent | 1c4a478c636a02154f62148c091966155ca8631b (diff) | |
| download | bcm5719-llvm-6ce5b63019c85347ef0816436d574f20a68a87c1.tar.gz bcm5719-llvm-6ce5b63019c85347ef0816436d574f20a68a87c1.zip | |
Updated ObjectFileELF tests to include more varaints.
Removed the distribution EXEs from FreeBSD and Ubuntu.
Added a hello-world .cpp file, and compiled it for
several platform/compiler variants:
Ubuntu 14.04 x86_64, clang 3.5 (the ubuntu1 3.5 pre variant)
Ubuntu 14.04 x86_64, gcc 4.8.2
FreeBSD 10.0 x86_64, clang 3.3
FreeBSD 10.0 x86_64, gcc 4.7.3
NetBSD 6.1 x86_64, gcc 4.5.3
I also added the NetBSD expected architecture and triple.
Note I have NetBSD not appending the version info to the
OS name, in contrast to FreeBSD.
llvm-svn: 211954
Diffstat (limited to 'lldb/test/functionalities/object-file/bin')
| -rwxr-xr-x | lldb/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-clang-3.3 | bin | 0 -> 7477 bytes | |||
| -rwxr-xr-x | lldb/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-gcc-4.7.3 | bin | 0 -> 7520 bytes | |||
| -rwxr-xr-x | lldb/test/functionalities/object-file/bin/hello-netbsd-6.1-x86_64-gcc-4.5.3 | bin | 0 -> 7352 bytes | |||
| -rwxr-xr-x | lldb/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-clang-3.5pre | bin | 0 -> 8112 bytes | |||
| -rwxr-xr-x | lldb/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-gcc-4.8.2 | bin | 0 -> 8056 bytes | |||
| -rw-r--r-- | lldb/test/functionalities/object-file/bin/hello.cpp | 8 |
6 files changed, 8 insertions, 0 deletions
diff --git a/lldb/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-clang-3.3 b/lldb/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-clang-3.3 Binary files differnew file mode 100755 index 00000000000..cea323639b4 --- /dev/null +++ b/lldb/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-clang-3.3 diff --git a/lldb/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-gcc-4.7.3 b/lldb/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-gcc-4.7.3 Binary files differnew file mode 100755 index 00000000000..38f43f8acb9 --- /dev/null +++ b/lldb/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-gcc-4.7.3 diff --git a/lldb/test/functionalities/object-file/bin/hello-netbsd-6.1-x86_64-gcc-4.5.3 b/lldb/test/functionalities/object-file/bin/hello-netbsd-6.1-x86_64-gcc-4.5.3 Binary files differnew file mode 100755 index 00000000000..6d531320ae9 --- /dev/null +++ b/lldb/test/functionalities/object-file/bin/hello-netbsd-6.1-x86_64-gcc-4.5.3 diff --git a/lldb/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-clang-3.5pre b/lldb/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-clang-3.5pre Binary files differnew file mode 100755 index 00000000000..8bdcf4d5b59 --- /dev/null +++ b/lldb/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-clang-3.5pre diff --git a/lldb/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-gcc-4.8.2 b/lldb/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-gcc-4.8.2 Binary files differnew file mode 100755 index 00000000000..01efbb061b7 --- /dev/null +++ b/lldb/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-gcc-4.8.2 diff --git a/lldb/test/functionalities/object-file/bin/hello.cpp b/lldb/test/functionalities/object-file/bin/hello.cpp new file mode 100644 index 00000000000..8c804005afe --- /dev/null +++ b/lldb/test/functionalities/object-file/bin/hello.cpp @@ -0,0 +1,8 @@ +#include <stdio.h> + +int main(int argc, char **argv) +{ + printf("Hello, world\n"); + return 0; +} + |

