OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef SANDBOX_LINUX_SECCOMP_BPF_BPF_TESTS_H__ | 5 #ifndef SANDBOX_LINUX_SECCOMP_BPF_BPF_TESTS_H__ |
6 #define SANDBOX_LINUX_SECCOMP_BPF_BPF_TESTS_H__ | 6 #define SANDBOX_LINUX_SECCOMP_BPF_BPF_TESTS_H__ |
7 | 7 |
8 #include <fcntl.h> | 8 #include <fcntl.h> |
9 #include <sys/stat.h> | 9 #include <sys/stat.h> |
10 #include <sys/types.h> | 10 #include <sys/types.h> |
11 | 11 |
12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
13 #include "build/build_config_functions.h" | 13 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h" |
| 14 #include "sandbox/linux/services/build_config_functions.h" |
14 #include "sandbox/linux/tests/unit_tests.h" | 15 #include "sandbox/linux/tests/unit_tests.h" |
15 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h" | |
16 | 16 |
17 namespace sandbox { | 17 namespace sandbox { |
18 | 18 |
19 // A BPF_DEATH_TEST is just the same as a BPF_TEST, but it assumes that the | 19 // A BPF_DEATH_TEST is just the same as a BPF_TEST, but it assumes that the |
20 // test will fail with a particular known error condition. Use the DEATH_XXX() | 20 // test will fail with a particular known error condition. Use the DEATH_XXX() |
21 // macros from unit_tests.h to specify the expected error condition. | 21 // macros from unit_tests.h to specify the expected error condition. |
22 // A BPF_DEATH_TEST is always disabled under ThreadSanitizer, see | 22 // A BPF_DEATH_TEST is always disabled under ThreadSanitizer, see |
23 // crbug.com/243968. | 23 // crbug.com/243968. |
24 #define BPF_DEATH_TEST(test_case_name, test_name, death, policy, aux...) \ | 24 #define BPF_DEATH_TEST(test_case_name, test_name, death, policy, aux...) \ |
25 void BPF_TEST_##test_name(sandbox::BpfTests<aux>::AuxType& BPF_AUX); \ | 25 void BPF_TEST_##test_name(sandbox::BpfTests<aux>::AuxType& BPF_AUX); \ |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 } | 109 } |
110 } | 110 } |
111 | 111 |
112 private: | 112 private: |
113 DISALLOW_IMPLICIT_CONSTRUCTORS(BpfTests); | 113 DISALLOW_IMPLICIT_CONSTRUCTORS(BpfTests); |
114 }; | 114 }; |
115 | 115 |
116 } // namespace | 116 } // namespace |
117 | 117 |
118 #endif // SANDBOX_LINUX_SECCOMP_BPF_BPF_TESTS_H__ | 118 #endif // SANDBOX_LINUX_SECCOMP_BPF_BPF_TESTS_H__ |
OLD | NEW |