forked from OSchip/llvm-project
35 lines
1.2 KiB
C++
35 lines
1.2 KiB
C++
|
//===-- ClangdFuzzer.cpp - Fuzz clangd ------------------------------------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
///
|
||
|
/// \file
|
||
|
/// \brief This file implements a function that runs clangd on a single input.
|
||
|
/// This function is then linked into the Fuzzer library.
|
||
|
///
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "ClangdLSPServer.h"
|
||
|
#include "llvm/Support/Program.h"
|
||
|
#include <sstream>
|
||
|
|
||
|
extern "C" int LLVMFuzzerTestOneInput(uint8_t *data, size_t size) {
|
||
|
/// Change stdin to binary to not lose \r\n on windows.
|
||
|
llvm::sys::ChangeStdinToBinary();
|
||
|
|
||
|
clang::clangd::JSONOutput Out(llvm::nulls(), llvm::nulls(), nullptr);
|
||
|
|
||
|
/// Initialize and run ClangdLSPServer.
|
||
|
clang::clangd::ClangdLSPServer LSPServer(
|
||
|
Out, clang::clangd::getDefaultAsyncThreadsCount(),
|
||
|
/*EnableSnippets=*/false, llvm::None, llvm::None);
|
||
|
|
||
|
std::istringstream In(std::string(reinterpret_cast<char *>(data), size));
|
||
|
LSPServer.run(In);
|
||
|
return 0;
|
||
|
}
|