diff options
author | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
commit | 952eddef9aff85b1e92626e89baaf7a360e2ac85 (patch) | |
tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /unittests/AST/DeclTest.cpp | |
parent | ea266cad53e3d49771fa38103913d3ec7a166694 (diff) | |
download | FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.zip FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.tar.gz |
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
https://llvm.org/svn/llvm-project/cfe/branches/release_34@197841
Diffstat (limited to 'unittests/AST/DeclTest.cpp')
-rw-r--r-- | unittests/AST/DeclTest.cpp | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/unittests/AST/DeclTest.cpp b/unittests/AST/DeclTest.cpp new file mode 100644 index 0000000..c845da2 --- /dev/null +++ b/unittests/AST/DeclTest.cpp @@ -0,0 +1,59 @@ +//===- unittests/AST/DeclTest.cpp --- Declaration tests -------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// Unit tests for Decl nodes in the AST. +// +//===----------------------------------------------------------------------===// + +#include "clang/ASTMatchers/ASTMatchFinder.h" +#include "clang/Tooling/Tooling.h" +#include "gtest/gtest.h" + +using namespace clang::ast_matchers; +using namespace clang::tooling; + +TEST(Decl, CleansUpAPValues) { + MatchFinder Finder; + llvm::OwningPtr<FrontendActionFactory> Factory( + newFrontendActionFactory(&Finder)); + + // This is a regression test for a memory leak in APValues for structs that + // allocate memory. This test only fails if run under valgrind with full leak + // checking enabled. + std::vector<std::string> Args(1, "-std=c++11"); + Args.push_back("-fno-ms-extensions"); + ASSERT_TRUE(runToolOnCodeWithArgs( + Factory->create(), + "struct X { int a; }; constexpr X x = { 42 };" + "union Y { constexpr Y(int a) : a(a) {} int a; }; constexpr Y y = { 42 };" + "constexpr int z[2] = { 42, 43 };" + "constexpr int __attribute__((vector_size(16))) v1 = {};" + "\n#ifdef __SIZEOF_INT128__\n" + "constexpr __uint128_t large_int = 0xffffffffffffffff;" + "constexpr __uint128_t small_int = 1;" + "\n#endif\n" + "constexpr double d1 = 42.42;" + "constexpr long double d2 = 42.42;" + "constexpr _Complex long double c1 = 42.0i;" + "constexpr _Complex long double c2 = 42.0;" + "template<int N> struct A : A<N-1> {};" + "template<> struct A<0> { int n; }; A<50> a;" + "constexpr int &r = a.n;" + "constexpr int A<50>::*p = &A<50>::n;" + "void f() { foo: bar: constexpr int k = __builtin_constant_p(0) ?" + " (char*)&&foo - (char*)&&bar : 0; }", + Args)); + + // FIXME: Once this test starts breaking we can test APValue::needsCleanup + // for ComplexInt. + ASSERT_FALSE(runToolOnCodeWithArgs( + Factory->create(), + "constexpr _Complex __uint128_t c = 0xffffffffffffffff;", + Args)); +} |