node/deps/v8/test/unittests/heap/cppgc/sanitizer-unittest.cc
Michaël Zasso 6cdd310275
deps: update V8 to 9.2.230.21
PR-URL: https://github.com/nodejs/node/pull/38990
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2021-07-20 15:24:51 +02:00

60 lines
1.5 KiB
C++

// Copyright 2021 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "include/cppgc/allocation.h"
#include "src/base/macros.h"
#include "src/base/sanitizer/asan.h"
#include "test/unittests/heap/cppgc/tests.h"
#include "testing/gtest/include/gtest/gtest.h"
#if defined(LEAK_SANITIZER)
#include <sanitizer/lsan_interface.h>
#endif // LEAK_SANITIZER
namespace cppgc {
namespace internal {
#if defined(LEAK_SANITIZER)
using LsanTest = testing::TestWithHeap;
class GCed final : public GarbageCollected<GCed> {
public:
void Trace(cppgc::Visitor*) const {}
std::unique_ptr<int> dummy{std::make_unique<int>(17)};
};
TEST_F(LsanTest, LeakDetectionDoesNotFindMemoryRetainedFromManaged) {
auto* o = MakeGarbageCollected<GCed>(GetAllocationHandle());
__lsan_do_leak_check();
USE(o);
}
#endif // LEAK_SANITIZER
#ifdef V8_USE_ADDRESS_SANITIZER
using AsanTest = testing::TestWithHeap;
class ObjectPoisoningInDestructor final
: public GarbageCollected<ObjectPoisoningInDestructor> {
public:
~ObjectPoisoningInDestructor() {
ASAN_POISON_MEMORY_REGION(this, sizeof(ObjectPoisoningInDestructor));
}
void Trace(cppgc::Visitor*) const {}
void* dummy{0};
};
TEST_F(AsanTest, ObjectPoisoningInDestructor) {
MakeGarbageCollected<ObjectPoisoningInDestructor>(GetAllocationHandle());
PreciseGC();
}
#endif // V8_USE_ADDRESS_SANITIZER
} // namespace internal
} // namespace cppgc