// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "sandbox/linux/services/proc_util.h" #include <fcntl.h> #include <unistd.h> #include "base/files/scoped_file.h" #include "base/posix/eintr_wrapper.h" #include "testing/gtest/include/gtest/gtest.h" namespace sandbox { TEST(ProcUtil, CountOpenFds) { … } TEST(ProcUtil, HasOpenDirectory) { … } TEST(ProcUtil, HasOpenDirectoryWithFD) { … } } // namespace sandbox