8f464e7f68
This gives some flexibility to embedders. Currently, embedders have to build a binary for each test file. After this CL, embedders can still choose to have a binary for each test file, by linking each test file with a googletest target that includes main() (usually "gtest_main"). Embedders can also choose to build a single binary for almost all test files, and link with a googletest target that includes main(). The latter is more convenient for projects that have very few test binaries, like Chromium. PiperOrigin-RevId: 419470798
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
// Copyright (c) 2018 The LevelDB Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
#include "util/no_destructor.h"
|
|
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <utility>
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace leveldb {
|
|
|
|
namespace {
|
|
|
|
struct DoNotDestruct {
|
|
public:
|
|
DoNotDestruct(uint32_t a, uint64_t b) : a(a), b(b) {}
|
|
~DoNotDestruct() { std::abort(); }
|
|
|
|
// Used to check constructor argument forwarding.
|
|
uint32_t a;
|
|
uint64_t b;
|
|
};
|
|
|
|
constexpr const uint32_t kGoldenA = 0xdeadbeef;
|
|
constexpr const uint64_t kGoldenB = 0xaabbccddeeffaabb;
|
|
|
|
} // namespace
|
|
|
|
TEST(NoDestructorTest, StackInstance) {
|
|
NoDestructor<DoNotDestruct> instance(kGoldenA, kGoldenB);
|
|
ASSERT_EQ(kGoldenA, instance.get()->a);
|
|
ASSERT_EQ(kGoldenB, instance.get()->b);
|
|
}
|
|
|
|
TEST(NoDestructorTest, StaticInstance) {
|
|
static NoDestructor<DoNotDestruct> instance(kGoldenA, kGoldenB);
|
|
ASSERT_EQ(kGoldenA, instance.get()->a);
|
|
ASSERT_EQ(kGoldenB, instance.get()->b);
|
|
}
|
|
|
|
} // namespace leveldb
|