//===-- MockSymlinkFileSystem.h //--------------------------------------------------===// // // 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/Utility/FileSpec.h" #include "llvm/Support/VirtualFileSystem.h" namespace lldb_private { // A mock file system that realpath's a given symlink to a given realpath. class MockSymlinkFileSystem : public llvm::vfs::FileSystem { … }; } // namespace lldb_private