summaryrefslogtreecommitdiffstats
path: root/libcxx/test
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test')
-rw-r--r--libcxx/test/libcxx/test/config.py3
-rw-r--r--libcxx/test/support/demangle.h49
-rw-r--r--libcxx/test/support/test.support/test_demangle.pass.cpp37
3 files changed, 89 insertions, 0 deletions
diff --git a/libcxx/test/libcxx/test/config.py b/libcxx/test/libcxx/test/config.py
index 229c5825047..fa84ddebad9 100644
--- a/libcxx/test/libcxx/test/config.py
+++ b/libcxx/test/libcxx/test/config.py
@@ -409,6 +409,9 @@ class Configuration(object):
self.lit_config.fatal("cxx_headers='%s' is not a directory."
% cxx_headers)
self.cxx.compile_flags += ['-I' + cxx_headers]
+ cxxabi_headers = os.path.join(self.libcxx_obj_root, 'include', 'c++-build')
+ if os.path.isdir(cxxabi_headers):
+ self.cxx.compile_flags += ['-I' + cxxabi_headers]
def configure_config_site_header(self):
# Check for a possible __config_site in the build directory. We
diff --git a/libcxx/test/support/demangle.h b/libcxx/test/support/demangle.h
new file mode 100644
index 00000000000..2a9757d8045
--- /dev/null
+++ b/libcxx/test/support/demangle.h
@@ -0,0 +1,49 @@
+// -*- C++ -*-
+//===----------------------------------------------------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+#ifndef SUPPORT_DEMANGLE_H
+#define SUPPORT_DEMANGLE_H
+
+#include "test_macros.h"
+#include <string>
+#include <cstdlib>
+
+#if !defined(TEST_HAS_NO_DEMANGLE)
+# if defined(__GNUC__) || defined(__clang__)
+# if __has_include("cxxabi.h")
+# include "cxxabi.h"
+# else
+# define TEST_HAS_NO_DEMANGLE
+# endif
+# else
+# define TEST_HAS_NO_DEMANGLE
+# endif
+#endif
+
+#if defined(TEST_HAS_NO_DEMANGLE)
+inline std::string demangle(const char* mangled_name) {
+ return mangled_name;
+}
+#else
+template <size_t N> struct Printer;
+inline std::string demangle(const char* mangled_name) {
+ int status = 0;
+ std::string input(mangled_name);
+ input.insert(0, "_Z");
+ char* out = __cxxabiv1::__cxa_demangle(input.c_str(), nullptr, nullptr, &status);
+ if (out != nullptr) {
+ std::string res(out);
+ std::free(out);
+ return res;
+ }
+ return mangled_name;
+}
+#endif
+
+#endif // SUPPORT_DEMANGLE_H
diff --git a/libcxx/test/support/test.support/test_demangle.pass.cpp b/libcxx/test/support/test.support/test_demangle.pass.cpp
new file mode 100644
index 00000000000..c5668d6f569
--- /dev/null
+++ b/libcxx/test/support/test.support/test_demangle.pass.cpp
@@ -0,0 +1,37 @@
+// -*- C++ -*-
+//===----------------------------------------------------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+#include "demangle.h"
+#include <typeinfo>
+#include <cassert>
+
+struct MyType {};
+
+template <class T, class U> struct ArgumentListID {};
+
+int main() {
+ struct {
+ const char* raw;
+ const char* expect;
+ } TestCases[] = {
+ {typeid(int).name(), "i"}, // FIXME
+ {typeid(MyType).name(), "MyType"},
+ {typeid(ArgumentListID<int, MyType>).name(), "ArgumentListID<int, MyType>"}
+ };
+ const size_t size = sizeof(TestCases) / sizeof(TestCases[0]);
+ for (size_t i=0; i < size; ++i) {
+ const char* raw = TestCases[i].raw;
+ const char* expect = TestCases[i].expect;
+#ifdef TEST_HAS_NO_DEMANGLE
+ assert(demangle(raw) == raw);
+#else
+ assert(demangle(raw) == expect);
+#endif
+ }
+}
OpenPOWER on IntegriCloud