// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifdef UNSAFE_BUFFERS_BUILD // TODO(crbug.com/351564777): Remove this and convert code to safer constructs. #pragma allow_unsafe_buffers #endif #include "sandbox/linux/bpf_dsl/test_trap_registry.h" #include <stddef.h> #include "base/memory/raw_ptr.h" #include "testing/gtest/include/gtest/gtest.h" namespace sandbox { namespace bpf_dsl { namespace { intptr_t TestTrapFuncOne(const arch_seccomp_data& data, void* aux) { … } intptr_t TestTrapFuncTwo(const arch_seccomp_data& data, void* aux) { … } // Test that TestTrapRegistry correctly assigns trap IDs to trap handlers. TEST(TestTrapRegistry, TrapIDs) { … } } // namespace } // namespace bpf_dsl } // namespace sandbox