diff options
Diffstat (limited to 'libcxx/test/support/test.support')
-rw-r--r-- | libcxx/test/support/test.support/test_demangle.pass.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
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 + } +} |