Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(444)

Side by Side Diff: sandbox/linux/bpf_dsl/test_trap_registry_unittest.cc

Issue 1310773006: Update sandbox/linux from upstream (Closed) Base URL: ssh://ssh.github.com/domokit/mojo.git@master
Patch Set: Update to 3909ebfa69566f7374a6900e63cd4d3c73a35378 Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sandbox/linux/bpf_dsl/test_trap_registry.cc ('k') | sandbox/linux/bpf_dsl/verifier.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "sandbox/linux/bpf_dsl/test_trap_registry.h"
6
7 #include <stddef.h>
8
9 #include "testing/gtest/include/gtest/gtest.h"
10
11 namespace sandbox {
12 namespace bpf_dsl {
13 namespace {
14
15 intptr_t TestTrapFuncOne(const arch_seccomp_data& data, void* aux) {
16 return 1;
17 }
18
19 intptr_t TestTrapFuncTwo(const arch_seccomp_data& data, void* aux) {
20 return 2;
21 }
22
23 // Test that TestTrapRegistry correctly assigns trap IDs to trap handlers.
24 TEST(TestTrapRegistry, TrapIDs) {
25 struct {
26 TrapRegistry::TrapFnc fnc;
27 const void* aux;
28 } funcs[] = {
29 {TestTrapFuncOne, nullptr},
30 {TestTrapFuncTwo, nullptr},
31 {TestTrapFuncOne, funcs},
32 {TestTrapFuncTwo, funcs},
33 };
34
35 TestTrapRegistry traps;
36
37 // Add traps twice to test that IDs are reused correctly.
38 for (int i = 0; i < 2; ++i) {
39 for (size_t j = 0; j < arraysize(funcs); ++j) {
40 // Trap IDs start at 1.
41 EXPECT_EQ(j + 1, traps.Add(funcs[j].fnc, funcs[j].aux, true));
42 }
43 }
44 }
45
46 } // namespace
47 } // namespace bpf_dsl
48 } // namespace sandbox
OLDNEW
« no previous file with comments | « sandbox/linux/bpf_dsl/test_trap_registry.cc ('k') | sandbox/linux/bpf_dsl/verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698