| Index: sandbox/linux/bpf_dsl/bpf_dsl_unittest.cc
|
| diff --git a/sandbox/linux/bpf_dsl/bpf_dsl_unittest.cc b/sandbox/linux/bpf_dsl/bpf_dsl_unittest.cc
|
| index 560d94cb3f4ca989df1ff1eaa9512848cb058436..d975d64ab0ef57f99ffb92e3f0a217d03579bd74 100644
|
| --- a/sandbox/linux/bpf_dsl/bpf_dsl_unittest.cc
|
| +++ b/sandbox/linux/bpf_dsl/bpf_dsl_unittest.cc
|
| @@ -16,8 +16,6 @@
|
| #include "sandbox/linux/seccomp-bpf/sandbox_bpf_policy.h"
|
| #include "sandbox/linux/seccomp-bpf/syscall.h"
|
|
|
| -using namespace sandbox::bpf_dsl;
|
| -
|
| // Helper macro to assert that invoking system call |sys| directly via
|
| // Syscall::Call with arguments |...| returns |res|.
|
| // Errors can be asserted by specifying a value like "-EINVAL".
|
| @@ -25,6 +23,7 @@ using namespace sandbox::bpf_dsl;
|
| BPF_ASSERT_EQ(res, Stubs::sys(__VA_ARGS__))
|
|
|
| namespace sandbox {
|
| +namespace bpf_dsl {
|
| namespace {
|
|
|
| // Type safe stubs for tested system calls.
|
| @@ -265,4 +264,5 @@ BPF_TEST_C(BPFDSL, ElseIfTest, ElseIfPolicy) {
|
| }
|
|
|
| } // namespace
|
| +} // namespace bpf_dsl
|
| } // namespace sandbox
|
|
|