//===-- PipeTest.cpp ------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "lldb/Host/Pipe.h" #include "TestingSupport/SubsystemRAII.h" #include "lldb/Host/FileSystem.h" #include "lldb/Host/HostInfo.h" #include "gtest/gtest.h" #include <fcntl.h> #include <numeric> #include <vector> usingnamespacelldb_private; class PipeTest : public testing::Test { … }; TEST_F(PipeTest, CreateWithUniqueName) { … } // Test broken #ifndef _WIN32 TEST_F(PipeTest, OpenAsReader) { … } #endif TEST_F(PipeTest, WriteWithTimeout) { … }