forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDLangDemangleTest.cpp
33 lines (26 loc) · 1.21 KB
/
DLangDemangleTest.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//===------------------ DLangDemangleTest.cpp -----------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "llvm/Demangle/Demangle.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include <cstdlib>
#include <utility>
struct DLangDemangleTestFixture
: public testing::TestWithParam<std::pair<const char *, const char *>> {
char *Demangled;
void SetUp() override { Demangled = llvm::dlangDemangle(GetParam().first); }
void TearDown() override { std::free(Demangled); }
};
TEST_P(DLangDemangleTestFixture, DLangDemangleTest) {
EXPECT_STREQ(Demangled, GetParam().second);
}
INSTANTIATE_TEST_SUITE_P(DLangDemangleTest, DLangDemangleTestFixture,
testing::Values(std::make_pair("_Dmain", "D main"),
std::make_pair(nullptr, nullptr),
std::make_pair("_Z", nullptr),
std::make_pair("_DDD", nullptr)));