llvm/lldb/unittests/Host/posix/TerminalTest.cpp

//===-- TerminalTest.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/FileSystem.h"
#include "lldb/Host/PseudoTerminal.h"
#include "lldb/Host/Terminal.h"
#include "llvm/Testing/Support/Error.h"
#include "TestingSupport/SubsystemRAII.h"

#include "gmock/gmock.h"
#include "gtest/gtest.h"

#include <termios.h>
#include <unistd.h>

usingnamespacelldb_private;

class TerminalTest : public ::testing::Test {};

TEST_F(TerminalTest, PtyIsATerminal) {}

TEST_F(TerminalTest, PipeIsNotATerminal) {}

TEST_F(TerminalTest, SetEcho) {}

TEST_F(TerminalTest, SetCanonical) {}

TEST_F(TerminalTest, SetRaw) {}

TEST_F(TerminalTest, SetBaudRate) {}

TEST_F(TerminalTest, SetStopBits) {}

TEST_F(TerminalTest, SetParity) {}

TEST_F(TerminalTest, SetParityCheck) {}

TEST_F(TerminalTest, SetHardwareFlowControl) {}

TEST_F(TerminalTest, SaveRestoreRAII) {}

TEST_F(TerminalTest, SaveRestore) {}