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/tests/unit_tests.h" | 14 #include "sandbox/linux/tests/unit_tests.h" |
14 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h" | 15 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h" |
15 | 16 |
16 namespace sandbox { | 17 namespace sandbox { |
17 | 18 |
18 // 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 |
19 // 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() |
20 // macros from unit_tests.h to specify the expected error condition. | 21 // macros from unit_tests.h to specify the expected error condition. |
21 // A BPF_DEATH_TEST is always disabled under ThreadSanitizer, see | 22 // A BPF_DEATH_TEST is always disabled under ThreadSanitizer, see |
22 // crbug.com/243968. | 23 // crbug.com/243968. |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 } | 108 } |
108 } | 109 } |
109 | 110 |
110 private: | 111 private: |
111 DISALLOW_IMPLICIT_CONSTRUCTORS(BpfTests); | 112 DISALLOW_IMPLICIT_CONSTRUCTORS(BpfTests); |
112 }; | 113 }; |
113 | 114 |
114 } // namespace | 115 } // namespace |
115 | 116 |
116 #endif // SANDBOX_LINUX_SECCOMP_BPF_BPF_TESTS_H__ | 117 #endif // SANDBOX_LINUX_SECCOMP_BPF_BPF_TESTS_H__ |
OLD | NEW |