llvm-project/compiler-rt/lib/orc/tests/unit/extensible_rtti_test.cpp
Mikhail Goncharov dbd81ba2e8 complete rename of __orc_rt namespace
for 3e04ad428313dde40c779af6d675b162e150125e

it's bizzare that none of the builbots were broken, only bazel build
https://buildkite.com/llvm-project/upstream-bazel/builds/109623#0191d5d0-2b3e-4ee7-b8dd-1e2580977e9b
2024-09-09 11:49:34 +02:00

55 lines
1.5 KiB
C++

//===-- extensible_rtti_test.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
//
//===----------------------------------------------------------------------===//
//
// This file is a part of the ORC runtime.
//
// Note:
// This unit test was adapted from
// llvm/unittests/Support/ExtensibleRTTITest.cpp
//
//===----------------------------------------------------------------------===//
#include "extensible_rtti.h"
#include "gtest/gtest.h"
using namespace orc_rt;
namespace {
class MyBase : public RTTIExtends<MyBase, RTTIRoot> {};
class MyDerivedA : public RTTIExtends<MyDerivedA, MyBase> {};
class MyDerivedB : public RTTIExtends<MyDerivedB, MyBase> {};
} // end anonymous namespace
TEST(ExtensibleRTTITest, BaseCheck) {
MyBase MB;
MyDerivedA MDA;
MyDerivedB MDB;
// Check MB properties.
EXPECT_TRUE(isa<RTTIRoot>(MB));
EXPECT_TRUE(isa<MyBase>(MB));
EXPECT_FALSE(isa<MyDerivedA>(MB));
EXPECT_FALSE(isa<MyDerivedB>(MB));
// Check MDA properties.
EXPECT_TRUE(isa<RTTIRoot>(MDA));
EXPECT_TRUE(isa<MyBase>(MDA));
EXPECT_TRUE(isa<MyDerivedA>(MDA));
EXPECT_FALSE(isa<MyDerivedB>(MDA));
// Check MDB properties.
EXPECT_TRUE(isa<RTTIRoot>(MDB));
EXPECT_TRUE(isa<MyBase>(MDB));
EXPECT_FALSE(isa<MyDerivedA>(MDB));
EXPECT_TRUE(isa<MyDerivedB>(MDB));
}