diff options
| author | Alexey Samsonov <samsonov@google.com> | 2012-09-18 07:23:54 +0000 |
|---|---|---|
| committer | Alexey Samsonov <samsonov@google.com> | 2012-09-18 07:23:54 +0000 |
| commit | 341e5bcb45c9aeab3584d0aaa07a814282ebbefc (patch) | |
| tree | aa4c489f05f13095b7d68d15a1ec93c5da516eb8 /compiler-rt/lib/tsan/output_tests/virtual_inheritance_compile_bug.cc | |
| parent | 7ecfa6d9603e09d5fa3eda0d25d72f07b568b47f (diff) | |
| download | bcm5719-llvm-341e5bcb45c9aeab3584d0aaa07a814282ebbefc.tar.gz bcm5719-llvm-341e5bcb45c9aeab3584d0aaa07a814282ebbefc.zip | |
[TSan] port all output tests to lit and move them to lit_tests directory. This makes 'make check-tsan' command test both unit and output TSan tests. Old custom makefiles for running TSan tests are still functional as well.
llvm-svn: 164110
Diffstat (limited to 'compiler-rt/lib/tsan/output_tests/virtual_inheritance_compile_bug.cc')
| -rw-r--r-- | compiler-rt/lib/tsan/output_tests/virtual_inheritance_compile_bug.cc | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/compiler-rt/lib/tsan/output_tests/virtual_inheritance_compile_bug.cc b/compiler-rt/lib/tsan/output_tests/virtual_inheritance_compile_bug.cc deleted file mode 100644 index 6198e8a870b..00000000000 --- a/compiler-rt/lib/tsan/output_tests/virtual_inheritance_compile_bug.cc +++ /dev/null @@ -1,13 +0,0 @@ -// Regression test for http://code.google.com/p/thread-sanitizer/issues/detail?id=3. -// The C++ variant is much more compact that the LLVM IR equivalent. -#include <stdio.h> -struct AAA { virtual long aaa () { return 0; } }; // NOLINT -struct BBB: virtual AAA { unsigned long bbb; }; // NOLINT -struct CCC: virtual AAA { }; -struct DDD: CCC, BBB { DDD(); }; // NOLINT -DDD::DDD() { } -int main() { - DDD d; - printf("OK\n"); -} -// CHECK: OK |

