Skip to content

Revert "[clang-doc] add ftime profiling" #100251

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jul 23, 2024

Conversation

PeterChou1
Copy link
Contributor

@PeterChou1 PeterChou1 commented Jul 23, 2024

This broke the build due to failing some clang-tidy checks: https://lab.llvm.org/buildbot/#/builders/145/builds/789

@PeterChou1 PeterChou1 changed the title Revert "[clang-doc] add ftime profiling Revert "[clang-doc] add ftime profiling" Jul 23, 2024
@llvmbot
Copy link
Member

llvmbot commented Jul 23, 2024

@llvm/pr-subscribers-clang-tools-extra

Author: None (PeterChou1)

Changes

This broke some clang-tidy checks https://lab.llvm.org/buildbot/#/builders/145/builds/789


Full diff: https://github.com/llvm/llvm-project/pull/100251.diff

6 Files Affected:

  • (modified) clang-tools-extra/clang-doc/BitcodeReader.cpp (-8)
  • (modified) clang-tools-extra/clang-doc/HTMLGenerator.cpp (+1-1)
  • (modified) clang-tools-extra/clang-doc/Mapper.cpp (-10)
  • (modified) clang-tools-extra/clang-doc/Representation.cpp (+2-4)
  • (modified) clang-tools-extra/clang-doc/Representation.h (+1-4)
  • (modified) clang-tools-extra/clang-doc/tool/ClangDocMain.cpp (+5-43)
diff --git a/clang-tools-extra/clang-doc/BitcodeReader.cpp b/clang-tools-extra/clang-doc/BitcodeReader.cpp
index bb2c43ad8171e..bfb04e7407b38 100644
--- a/clang-tools-extra/clang-doc/BitcodeReader.cpp
+++ b/clang-tools-extra/clang-doc/BitcodeReader.cpp
@@ -9,7 +9,6 @@
 #include "BitcodeReader.h"
 #include "llvm/ADT/IndexedMap.h"
 #include "llvm/Support/Error.h"
-#include "llvm/Support/TimeProfiler.h"
 #include "llvm/Support/raw_ostream.h"
 #include <optional>
 
@@ -671,7 +670,6 @@ llvm::Error ClangDocBitcodeReader::readRecord(unsigned ID, T I) {
 
 template <>
 llvm::Error ClangDocBitcodeReader::readRecord(unsigned ID, Reference *I) {
-  llvm::TimeTraceScope("Reducing infos", "readRecord");
   Record R;
   llvm::StringRef Blob;
   llvm::Expected<unsigned> MaybeRecID = Stream.readRecord(ID, R, &Blob);
@@ -683,7 +681,6 @@ llvm::Error ClangDocBitcodeReader::readRecord(unsigned ID, Reference *I) {
 // Read a block of records into a single info.
 template <typename T>
 llvm::Error ClangDocBitcodeReader::readBlock(unsigned ID, T I) {
-  llvm::TimeTraceScope("Reducing infos", "readBlock");
   if (llvm::Error Err = Stream.EnterSubBlock(ID))
     return Err;
 
@@ -714,7 +711,6 @@ llvm::Error ClangDocBitcodeReader::readBlock(unsigned ID, T I) {
 
 template <typename T>
 llvm::Error ClangDocBitcodeReader::readSubBlock(unsigned ID, T I) {
-  llvm::TimeTraceScope("Reducing infos", "readSubBlock");
   switch (ID) {
   // Blocks can only have certain types of sub blocks.
   case BI_COMMENT_BLOCK_ID: {
@@ -821,7 +817,6 @@ llvm::Error ClangDocBitcodeReader::readSubBlock(unsigned ID, T I) {
 
 ClangDocBitcodeReader::Cursor
 ClangDocBitcodeReader::skipUntilRecordOrBlock(unsigned &BlockOrRecordID) {
-  llvm::TimeTraceScope("Reducing infos", "skipUntilRecordOrBlock");
   BlockOrRecordID = 0;
 
   while (!Stream.AtEndOfStream()) {
@@ -883,7 +878,6 @@ llvm::Error ClangDocBitcodeReader::validateStream() {
 }
 
 llvm::Error ClangDocBitcodeReader::readBlockInfoBlock() {
-  llvm::TimeTraceScope("Reducing infos", "readBlockInfoBlock");
   Expected<std::optional<llvm::BitstreamBlockInfo>> MaybeBlockInfo =
       Stream.ReadBlockInfoBlock();
   if (!MaybeBlockInfo)
@@ -900,7 +894,6 @@ llvm::Error ClangDocBitcodeReader::readBlockInfoBlock() {
 template <typename T>
 llvm::Expected<std::unique_ptr<Info>>
 ClangDocBitcodeReader::createInfo(unsigned ID) {
-  llvm::TimeTraceScope("Reducing infos", "createInfo");
   std::unique_ptr<Info> I = std::make_unique<T>();
   if (auto Err = readBlock(ID, static_cast<T *>(I.get())))
     return std::move(Err);
@@ -909,7 +902,6 @@ ClangDocBitcodeReader::createInfo(unsigned ID) {
 
 llvm::Expected<std::unique_ptr<Info>>
 ClangDocBitcodeReader::readBlockToInfo(unsigned ID) {
-  llvm::TimeTraceScope("Reducing infos", "readBlockToInfo");
   switch (ID) {
   case BI_NAMESPACE_BLOCK_ID:
     return createInfo<NamespaceInfo>(ID);
diff --git a/clang-tools-extra/clang-doc/HTMLGenerator.cpp b/clang-tools-extra/clang-doc/HTMLGenerator.cpp
index f6b5e8926f903..c4df336418484 100644
--- a/clang-tools-extra/clang-doc/HTMLGenerator.cpp
+++ b/clang-tools-extra/clang-doc/HTMLGenerator.cpp
@@ -983,7 +983,7 @@ static llvm::Error serializeIndex(ClangDocContext &CDCtx) {
   llvm::json::OStream J(OS, 2);
   std::function<void(Index)> IndexToJSON = [&](const Index &I) {
     J.object([&] {
-      J.attribute("USR", toHex(llvm::toStringRef(I.USR)));
+      //J.attribute("USR", toHex(llvm::toStringRef(I.USR)));
       J.attribute("Name", I.Name);
       J.attribute("RefType", getRefType(I.RefType));
       J.attribute("Path", I.getRelativeFilePath(""));
diff --git a/clang-tools-extra/clang-doc/Mapper.cpp b/clang-tools-extra/clang-doc/Mapper.cpp
index ed12e53f49161..bb8b7952980ac 100644
--- a/clang-tools-extra/clang-doc/Mapper.cpp
+++ b/clang-tools-extra/clang-doc/Mapper.cpp
@@ -13,17 +13,12 @@
 #include "clang/Index/USRGeneration.h"
 #include "llvm/ADT/StringExtras.h"
 #include "llvm/Support/Error.h"
-#include "llvm/Support/TimeProfiler.h"
 
 namespace clang {
 namespace doc {
 
 void MapASTVisitor::HandleTranslationUnit(ASTContext &Context) {
-  if (CDCtx.FTimeTrace)
-    llvm::timeTraceProfilerInitialize(200, "clang-doc");
   TraverseDecl(Context.getTranslationUnitDecl());
-  if (CDCtx.FTimeTrace)
-    llvm::timeTraceProfilerFinishThread();
 }
 
 template <typename T> bool MapASTVisitor::mapDecl(const T *D) {
@@ -35,7 +30,6 @@ template <typename T> bool MapASTVisitor::mapDecl(const T *D) {
   if (D->getParentFunctionOrMethod())
     return true;
 
-  llvm::timeTraceProfilerBegin("Mapping declaration", "emit info from astnode");
   llvm::SmallString<128> USR;
   // If there is an error generating a USR for the decl, skip this decl.
   if (index::generateUSRForDecl(D, USR))
@@ -46,10 +40,7 @@ template <typename T> bool MapASTVisitor::mapDecl(const T *D) {
   auto I = serialize::emitInfo(D, getComment(D, D->getASTContext()),
                                getLine(D, D->getASTContext()), File,
                                IsFileInRootDir, CDCtx.PublicOnly);
-  llvm::timeTraceProfilerEnd();
 
-  llvm::timeTraceProfilerBegin("Mapping declaration",
-                               "serialized info into bitcode");
   // A null in place of I indicates that the serializer is skipping this decl
   // for some reason (e.g. we're only reporting public decls).
   if (I.first)
@@ -58,7 +49,6 @@ template <typename T> bool MapASTVisitor::mapDecl(const T *D) {
   if (I.second)
     CDCtx.ECtx->reportResult(llvm::toHex(llvm::toStringRef(I.second->USR)),
                              serialize::serialize(I.second));
-  llvm::timeTraceProfilerEnd();
   return true;
 }
 
diff --git a/clang-tools-extra/clang-doc/Representation.cpp b/clang-tools-extra/clang-doc/Representation.cpp
index 64abacac37112..d08afbb962189 100644
--- a/clang-tools-extra/clang-doc/Representation.cpp
+++ b/clang-tools-extra/clang-doc/Representation.cpp
@@ -368,11 +368,9 @@ ClangDocContext::ClangDocContext(tooling::ExecutionContext *ECtx,
                                  StringRef ProjectName, bool PublicOnly,
                                  StringRef OutDirectory, StringRef SourceRoot,
                                  StringRef RepositoryUrl,
-                                 std::vector<std::string> UserStylesheets,
-                                 bool FTimeTrace)
+                                 std::vector<std::string> UserStylesheets)
     : ECtx(ECtx), ProjectName(ProjectName), PublicOnly(PublicOnly),
-      OutDirectory(OutDirectory), UserStylesheets(UserStylesheets),
-      FTimeTrace(FTimeTrace) {
+      OutDirectory(OutDirectory), UserStylesheets(UserStylesheets) {
   llvm::SmallString<128> SourceRootDir(SourceRoot);
   if (SourceRoot.empty())
     // If no SourceRoot was provided the current path is used as the default
diff --git a/clang-tools-extra/clang-doc/Representation.h b/clang-tools-extra/clang-doc/Representation.h
index 7de154d642c8b..d70c279f7a2bd 100644
--- a/clang-tools-extra/clang-doc/Representation.h
+++ b/clang-tools-extra/clang-doc/Representation.h
@@ -482,13 +482,10 @@ struct ClangDocContext {
   ClangDocContext(tooling::ExecutionContext *ECtx, StringRef ProjectName,
                   bool PublicOnly, StringRef OutDirectory, StringRef SourceRoot,
                   StringRef RepositoryUrl,
-                  std::vector<std::string> UserStylesheets,
-                  bool FTimeTrace = false);
+                  std::vector<std::string> UserStylesheets);
   tooling::ExecutionContext *ECtx;
   std::string ProjectName; // Name of project clang-doc is documenting.
   bool PublicOnly; // Indicates if only public declarations are documented.
-  bool FTimeTrace; // Indicates if ftime trace is turned on
-  int Granularity; // Granularity of ftime trace
   std::string OutDirectory; // Directory for outputting generated files.
   std::string SourceRoot;   // Directory where processed files are stored. Links
                             // to definition locations will only be generated if
diff --git a/clang-tools-extra/clang-doc/tool/ClangDocMain.cpp b/clang-tools-extra/clang-doc/tool/ClangDocMain.cpp
index 97648af7cf8fd..6198a6e0cdcc3 100644
--- a/clang-tools-extra/clang-doc/tool/ClangDocMain.cpp
+++ b/clang-tools-extra/clang-doc/tool/ClangDocMain.cpp
@@ -41,7 +41,6 @@
 #include "llvm/Support/Process.h"
 #include "llvm/Support/Signals.h"
 #include "llvm/Support/ThreadPool.h"
-#include "llvm/Support/TimeProfiler.h"
 #include "llvm/Support/raw_ostream.h"
 #include <atomic>
 #include <mutex>
@@ -100,11 +99,6 @@ URL of repository that hosts code.
 Used for links to definition locations.)"),
                   llvm::cl::cat(ClangDocCategory));
 
-static llvm::cl::opt<bool> FTimeTrace("ftime-trace", llvm::cl::desc(R"(
-Turn on time profiler. Generates clang-doc-tracing.json)"),
-                                      llvm::cl::init(false),
-                                      llvm::cl::cat(ClangDocCategory));
-
 enum OutputFormatTy {
   md,
   yaml,
@@ -235,12 +229,6 @@ Example usage for a project using a compile commands database:
     return 1;
   }
 
-  // turns on ftime trace profiling
-  if (FTimeTrace)
-    llvm::timeTraceProfilerInitialize(200, "clang-doc");
-
-  llvm::TimeTraceScope("main");
-
   // Fail early if an invalid format was provided.
   std::string Format = getFormatString();
   llvm::outs() << "Emiting docs in " << Format << " format.\n";
@@ -264,8 +252,8 @@ Example usage for a project using a compile commands database:
       OutDirectory,
       SourceRoot,
       RepositoryUrl,
-      {UserStylesheets.begin(), UserStylesheets.end()},
-      FTimeTrace};
+      {UserStylesheets.begin(), UserStylesheets.end()}
+  };
 
   if (Format == "html") {
     if (auto Err = getHtmlAssetFiles(argv[0], CDCtx)) {
@@ -274,7 +262,6 @@ Example usage for a project using a compile commands database:
     }
   }
 
-  llvm::timeTraceProfilerBegin("Mapping declaration", "total runtime");
   // Mapping phase
   llvm::outs() << "Mapping decls...\n";
   auto Err =
@@ -289,12 +276,10 @@ Example usage for a project using a compile commands database:
       return 1;
     }
   }
-  llvm::timeTraceProfilerEnd();
 
   // Collect values into output by key.
   // In ToolResults, the Key is the hashed USR and the value is the
   // bitcode-encoded representation of the Info object.
-  llvm::timeTraceProfilerBegin("Collect Info", "total runtime");
   llvm::outs() << "Collecting infos...\n";
   llvm::StringMap<std::vector<StringRef>> USRToBitcode;
   Executor->get()->getToolResults()->forEachResult(
@@ -302,7 +287,6 @@ Example usage for a project using a compile commands database:
         auto R = USRToBitcode.try_emplace(Key, std::vector<StringRef>());
         R.first->second.emplace_back(Value);
       });
-  llvm::timeTraceProfilerEnd();
 
   // Collects all Infos according to their unique USR value. This map is added
   // to from the thread pool below and is protected by the USRToInfoMutex.
@@ -310,7 +294,6 @@ Example usage for a project using a compile commands database:
   llvm::StringMap<std::unique_ptr<doc::Info>> USRToInfo;
 
   // First reducing phase (reduce all decls into one info per decl).
-  llvm::timeTraceProfilerBegin("Reducing infos", "total runtime");
   llvm::outs() << "Reducing " << USRToBitcode.size() << " infos...\n";
   std::atomic<bool> Error;
   Error = false;
@@ -319,11 +302,8 @@ Example usage for a project using a compile commands database:
   llvm::DefaultThreadPool Pool(llvm::hardware_concurrency(ExecutorConcurrency));
   for (auto &Group : USRToBitcode) {
     Pool.async([&]() {
-      if (FTimeTrace)
-        llvm::timeTraceProfilerInitialize(200, "clang-doc");
-
-      llvm::timeTraceProfilerBegin("Reducing infos", "decoding bitcode");
       std::vector<std::unique_ptr<doc::Info>> Infos;
+
       for (auto &Bitcode : Group.getValue()) {
         llvm::BitstreamCursor Stream(Bitcode);
         doc::ClangDocBitcodeReader Reader(Stream);
@@ -336,40 +316,32 @@ Example usage for a project using a compile commands database:
         std::move(ReadInfos->begin(), ReadInfos->end(),
                   std::back_inserter(Infos));
       }
-      llvm::timeTraceProfilerEnd();
 
-      llvm::timeTraceProfilerBegin("Reducing infos", "merging bitcode");
       auto Reduced = doc::mergeInfos(Infos);
       if (!Reduced) {
         llvm::errs() << llvm::toString(Reduced.takeError());
         return;
       }
-      llvm::timeTraceProfilerEnd();
 
       // Add a reference to this Info in the Index
       {
         std::lock_guard<llvm::sys::Mutex> Guard(IndexMutex);
         clang::doc::Generator::addInfoToIndex(CDCtx.Idx, Reduced.get().get());
       }
-      // Save in the result map (needs a lock due to threaded access).
 
+      // Save in the result map (needs a lock due to threaded access).
       {
         std::lock_guard<llvm::sys::Mutex> Guard(USRToInfoMutex);
         USRToInfo[Group.getKey()] = std::move(Reduced.get());
       }
-
-      if (CDCtx.FTimeTrace)
-        llvm::timeTraceProfilerFinishThread();
     });
   }
-  llvm::timeTraceProfilerEnd();
 
   Pool.wait();
 
   if (Error)
     return 1;
 
-  llvm::timeTraceProfilerBegin("Writing output", "total runtime");
   // Ensure the root output directory exists.
   if (std::error_code Err = llvm::sys::fs::create_directories(OutDirectory);
       Err != std::error_code()) {
@@ -390,16 +362,6 @@ Example usage for a project using a compile commands database:
   if (Err) {
     llvm::outs() << "warning: " << toString(std::move(Err)) << "\n";
   }
-  llvm::timeTraceProfilerEnd();
-
-  if (FTimeTrace) {
-    std::error_code EC;
-    llvm::raw_fd_ostream OS("clang-doc-tracing.json", EC,
-                            llvm::sys::fs::OF_Text);
-    if (!EC)
-      llvm::timeTraceProfilerWrite(OS);
-    else
-      return 1;
-  }
+
   return 0;
 }

@PeterChou1 PeterChou1 merged commit 80d1c6a into llvm:main Jul 23, 2024
5 of 8 checks passed
Copy link

⚠️ C/C++ code formatter, clang-format found issues in your code. ⚠️

You can test this locally with the following command:
git-clang-format --diff 7868c04d97b4c30b3c23f126ec206e7ece3b8b70 5dd3db46dbc16bdbb21913c23e650396970e966d --extensions h,cpp -- clang-tools-extra/clang-doc/BitcodeReader.cpp clang-tools-extra/clang-doc/HTMLGenerator.cpp clang-tools-extra/clang-doc/Mapper.cpp clang-tools-extra/clang-doc/Representation.cpp clang-tools-extra/clang-doc/Representation.h clang-tools-extra/clang-doc/tool/ClangDocMain.cpp
View the diff from clang-format here.
diff --git a/clang-tools-extra/clang-doc/HTMLGenerator.cpp b/clang-tools-extra/clang-doc/HTMLGenerator.cpp
index c4df336418..483282d3a2 100644
--- a/clang-tools-extra/clang-doc/HTMLGenerator.cpp
+++ b/clang-tools-extra/clang-doc/HTMLGenerator.cpp
@@ -983,7 +983,7 @@ static llvm::Error serializeIndex(ClangDocContext &CDCtx) {
   llvm::json::OStream J(OS, 2);
   std::function<void(Index)> IndexToJSON = [&](const Index &I) {
     J.object([&] {
-      //J.attribute("USR", toHex(llvm::toStringRef(I.USR)));
+      // J.attribute("USR", toHex(llvm::toStringRef(I.USR)));
       J.attribute("Name", I.Name);
       J.attribute("RefType", getRefType(I.RefType));
       J.attribute("Path", I.getRelativeFilePath(""));
diff --git a/clang-tools-extra/clang-doc/tool/ClangDocMain.cpp b/clang-tools-extra/clang-doc/tool/ClangDocMain.cpp
index 6198a6e0cd..f438efa35e 100644
--- a/clang-tools-extra/clang-doc/tool/ClangDocMain.cpp
+++ b/clang-tools-extra/clang-doc/tool/ClangDocMain.cpp
@@ -252,8 +252,7 @@ Example usage for a project using a compile commands database:
       OutDirectory,
       SourceRoot,
       RepositoryUrl,
-      {UserStylesheets.begin(), UserStylesheets.end()}
-  };
+      {UserStylesheets.begin(), UserStylesheets.end()}};
 
   if (Format == "html") {
     if (auto Err = getHtmlAssetFiles(argv[0], CDCtx)) {

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-sie-ubuntu-fast running on sie-linux-worker while building clang-tools-extra at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/144/builds/3080

Here is the relevant piece of the build log for the reference:

Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...
Emiting docs in md format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp && mkdir -p /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ rm -rf /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ mkdir -p /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
RUN: at line 2: clang-doc --format=html --output=/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=html --output=/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 3: clang-doc --format=md --output=/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=md --output=/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 4: FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp -check-prefix=JSON-INDEX
�[1m/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp:195:21: �[0m�[0;1;31merror: �[0m�[1mJSON-INDEX-NEXT: expected string not found in input
�[0m// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
�[0;1;32m                    ^
�[0m�[1m<stdin>:2:8: �[0m�[0;1;30mnote: �[0m�[1mscanning from here
�[0mreturn{
�[0;1;32m       ^
�[0m�[1m<stdin>:13:2: �[0m�[0;1;30mnote: �[0m�[1mpossible intended match here
�[0m "Name": "AnonClass",
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-sie-win running on sie-win-worker while building clang-tools-extra at step 7 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/46/builds/2175

Here is the relevant piece of the build log for the reference:

Step 7 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
# RUN: at line 1
rm -rf Z:\b\llvm-clang-x86_64-sie-win\build\tools\clang\tools\extra\test\clang-doc\Output\namespace.cpp.tmp && mkdir -p Z:\b\llvm-clang-x86_64-sie-win\build\tools\clang\tools\extra\test\clang-doc\Output\namespace.cpp.tmp
# executed command: rm -rf 'Z:\b\llvm-clang-x86_64-sie-win\build\tools\clang\tools\extra\test\clang-doc\Output\namespace.cpp.tmp'
# executed command: mkdir -p 'Z:\b\llvm-clang-x86_64-sie-win\build\tools\clang\tools\extra\test\clang-doc\Output\namespace.cpp.tmp'
# RUN: at line 2
clang-doc --format=html --output=Z:\b\llvm-clang-x86_64-sie-win\build\tools\clang\tools\extra\test\clang-doc\Output\namespace.cpp.tmp --executor=standalone Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang-tools-extra\test\clang-doc\namespace.cpp
# executed command: clang-doc --format=html '--output=Z:\b\llvm-clang-x86_64-sie-win\build\tools\clang\tools\extra\test\clang-doc\Output\namespace.cpp.tmp' --executor=standalone 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang-tools-extra\test\clang-doc\namespace.cpp'
# .---command stdout------------
# | Emiting docs in html format.
# | Mapping decls...
# | Collecting infos...
# | Reducing 9 infos...
# | Generating docs...
# | Generating assets for docs...
# `-----------------------------
# .---command stderr------------
# | Error while trying to load a compilation database:
# | Could not auto-detect compilation database for file "Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang-tools-extra\test\clang-doc\namespace.cpp"
# | No compilation database found in Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang-tools-extra\test\clang-doc or any parent directory
# | fixed-compilation-database: Error while opening fixed database: no such file or directory
# | json-compilation-database: Error while opening JSON database: no such file or directory
# | Running without flags.
# `-----------------------------
# RUN: at line 3
clang-doc --format=md --output=Z:\b\llvm-clang-x86_64-sie-win\build\tools\clang\tools\extra\test\clang-doc\Output\namespace.cpp.tmp --executor=standalone Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang-tools-extra\test\clang-doc\namespace.cpp
# executed command: clang-doc --format=md '--output=Z:\b\llvm-clang-x86_64-sie-win\build\tools\clang\tools\extra\test\clang-doc\Output\namespace.cpp.tmp' --executor=standalone 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang-tools-extra\test\clang-doc\namespace.cpp'
# .---command stdout------------
# | Emiting docs in md format.
# | Mapping decls...
# | Collecting infos...
# | Reducing 9 infos...
# | Generating docs...
# | Generating assets for docs...
# `-----------------------------
# .---command stderr------------
# | Error while trying to load a compilation database:
# | Could not auto-detect compilation database for file "Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang-tools-extra\test\clang-doc\namespace.cpp"
# | No compilation database found in Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang-tools-extra\test\clang-doc or any parent directory
# | fixed-compilation-database: Error while opening fixed database: no such file or directory
# | json-compilation-database: Error while opening JSON database: no such file or directory
# | Running without flags.
# `-----------------------------
# RUN: at line 4
FileCheck Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang-tools-extra\test\clang-doc\namespace.cpp < Z:\b\llvm-clang-x86_64-sie-win\build\tools\clang\tools\extra\test\clang-doc\Output\namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
# executed command: FileCheck 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang-tools-extra\test\clang-doc\namespace.cpp' -check-prefix=JSON-INDEX
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-gcc-ubuntu running on sie-linux-worker3 while building clang-tools-extra at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/174/builds/2222

Here is the relevant piece of the build log for the reference:

Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...
Emiting docs in md format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp && mkdir -p /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ rm -rf /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ mkdir -p /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
RUN: at line 2: clang-doc --format=html --output=/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=html --output=/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 3: clang-doc --format=md --output=/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=md --output=/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 4: FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp -check-prefix=JSON-INDEX
�[1m/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp:195:21: �[0m�[0;1;31merror: �[0m�[1mJSON-INDEX-NEXT: expected string not found in input
�[0m// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
�[0;1;32m                    ^
�[0m�[1m<stdin>:2:8: �[0m�[0;1;30mnote: �[0m�[1mscanning from here
�[0mreturn{
�[0;1;32m       ^
�[0m�[1m<stdin>:13:2: �[0m�[0;1;30mnote: �[0m�[1mpossible intended match here
�[0m "Name": "AnonClass",
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-aarch64-darwin running on doug-worker-4 while building clang-tools-extra at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/190/builds/2508

Here is the relevant piece of the build log for the reference:

Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang Tools :: clang-doc/basic-project.test' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 5 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp && mkdir -p /Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs /Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build
+ rm -rf /Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp
+ mkdir -p /Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs /Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build
RUN: at line 2: sed 's|$test_dir|/Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang-tools-extra/test/clang-doc|g' /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang-tools-extra/test/clang-doc/Inputs/basic-project/database_template.json > /Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
+ sed 's|$test_dir|/Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang-tools-extra/test/clang-doc|g' /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang-tools-extra/test/clang-doc/Inputs/basic-project/database_template.json
RUN: at line 3: clang-doc --format=html --output=/Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs --executor=all-TUs /Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
+ clang-doc --format=html --output=/Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs --executor=all-TUs /Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
[1/3] Processing file /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Rectangle.cpp
[2/3] Processing file /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Circle.cpp
[3/3] Processing file /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Calculator.cpp
RUN: at line 4: FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang-tools-extra/test/clang-doc/basic-project.test -input-file=/Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang-tools-extra/test/clang-doc/basic-project.test -input-file=/Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js -check-prefix=JSON-INDEX
�[1m/Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang-tools-extra/test/clang-doc/basic-project.test:12:21: �[0m�[0;1;31merror: �[0m�[1mJSON-INDEX-NEXT: expected string not found in input
�[0m// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
�[0;1;32m                    ^
�[0m�[1m/Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js:2:8: �[0m�[0;1;30mnote: �[0m�[1mscanning from here
�[0mreturn{
�[0;1;32m       ^
�[0m�[1m/Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js:3:2: �[0m�[0;1;30mnote: �[0m�[1mpossible intended match here
�[0m "Name": "",
�[0;1;32m ^
�[0m
Input file: /Users/buildbot/buildbot-root/aarch64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js
Check file: /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang-tools-extra/test/clang-doc/basic-project.test

-dump-input=help explains the following input dump.

Input was:
<<<<<<
�[1m�[0m�[0;1;30m           1: �[0m�[1m�[0;1;46m�[0masync function LoadIndex() {�[0;1;46m �[0m
�[0;1;32mcheck:10      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
�[0m�[0;1;30m           2: �[0m�[1m�[0;1;46m�[0mreturn{�[0;1;46m �[0m
�[0;1;32mnext:11       ^~~~~~~
�[0m�[0;1;31mnext:12'0            X error: no match found
�[0m�[0;1;30m           3: �[0m�[1m�[0;1;46m "Name": "", �[0m
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder clang-armv8-quick running on linaro-clang-armv8-quick while building clang-tools-extra at step 5 "ninja check 1".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/154/builds/1844

Here is the relevant piece of the build log for the reference:

Step 5 (ninja check 1) failure: stage 1 checked (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...
Emiting docs in md format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp && mkdir -p /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ rm -rf /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ mkdir -p /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
RUN: at line 2: clang-doc --format=html --output=/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=html --output=/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/tcwg-buildbot/worker/clang-armv8-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 3: clang-doc --format=md --output=/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=md --output=/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/tcwg-buildbot/worker/clang-armv8-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 4: FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp < /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp -check-prefix=JSON-INDEX
/home/tcwg-buildbot/worker/clang-armv8-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp:195:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
<stdin>:2:8: note: scanning from here
return{
       ^
<stdin>:13:2: note: possible intended match here
 "Name": "AnonClass",
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder clang-aarch64-quick running on linaro-clang-aarch64-quick while building clang-tools-extra at step 5 "ninja check 1".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/65/builds/1855

Here is the relevant piece of the build log for the reference:

Step 5 (ninja check 1) failure: stage 1 checked (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...
Emiting docs in md format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp && mkdir -p /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ rm -rf /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ mkdir -p /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
RUN: at line 2: clang-doc --format=html --output=/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=html --output=/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 3: clang-doc --format=md --output=/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=md --output=/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 4: FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp < /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp -check-prefix=JSON-INDEX
/home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/clang-tools-extra/test/clang-doc/namespace.cpp:195:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
<stdin>:2:8: note: scanning from here
return{
       ^
<stdin>:13:2: note: possible intended match here
 "Name": "AnonClass",
...

PeterChou1 added a commit that referenced this pull request Jul 23, 2024
This patch fixes the broken test caused by clang-doc which was caused by
#100251

https://lab.llvm.org/buildbot/#/builders/144/builds/3080
@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder clang-ppc64be-linux-test-suite running on ppc64be-clang-test-suite while building clang-tools-extra at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/176/builds/1434

Here is the relevant piece of the build log for the reference:

Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...
Emiting docs in md format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp && mkdir -p /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ rm -rf /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ mkdir -p /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
RUN: at line 2: clang-doc --format=html --output=/home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=html --output=/home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 3: clang-doc --format=md --output=/home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=md --output=/home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 4: FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp < /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp -check-prefix=JSON-INDEX
/home/buildbots/llvm-external-buildbots/workers/ppc64be-clang-test-suite/clang-ppc64be-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp:195:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
<stdin>:2:8: note: scanning from here
return{
       ^
<stdin>:13:2: note: possible intended match here
 "Name": "AnonClass",
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder clang-aarch64-sve-vla running on linaro-g3-02 while building clang-tools-extra at step 7 "ninja check 1".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/17/builds/1253

Here is the relevant piece of the build log for the reference:

Step 7 (ninja check 1) failure: stage 1 checked (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...
Emiting docs in md format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp && mkdir -p /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ rm -rf /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ mkdir -p /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
RUN: at line 2: clang-doc --format=html --output=/home/tcwg-buildbot/worker/clang-aarch64-sve-vla/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=html --output=/home/tcwg-buildbot/worker/clang-aarch64-sve-vla/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/tcwg-buildbot/worker/clang-aarch64-sve-vla/llvm/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/llvm/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 3: clang-doc --format=md --output=/home/tcwg-buildbot/worker/clang-aarch64-sve-vla/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=md --output=/home/tcwg-buildbot/worker/clang-aarch64-sve-vla/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/tcwg-buildbot/worker/clang-aarch64-sve-vla/llvm/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/llvm/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 4: FileCheck /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/llvm/clang-tools-extra/test/clang-doc/namespace.cpp < /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /home/tcwg-buildbot/worker/clang-aarch64-sve-vla/llvm/clang-tools-extra/test/clang-doc/namespace.cpp -check-prefix=JSON-INDEX
/home/tcwg-buildbot/worker/clang-aarch64-sve-vla/llvm/clang-tools-extra/test/clang-doc/namespace.cpp:195:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
<stdin>:2:8: note: scanning from here
return{
       ^
<stdin>:13:2: note: possible intended match here
 "Name": "AnonClass",
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder clang-solaris11-sparcv9 running on solaris11-sparcv9 while building clang-tools-extra at step 5 "ninja check 1".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/13/builds/1007

Here is the relevant piece of the build log for the reference:

Step 5 (ninja check 1) failure: stage 1 checked (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...
Emiting docs in md format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp && mkdir -p /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ rm -rf /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ mkdir -p /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
RUN: at line 2: clang-doc --format=html --output=/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=html --output=/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 3: clang-doc --format=md --output=/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=md --output=/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 4: FileCheck /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/clang-tools-extra/test/clang-doc/namespace.cpp < /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/clang-tools-extra/test/clang-doc/namespace.cpp -check-prefix=JSON-INDEX
/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/clang-tools-extra/test/clang-doc/namespace.cpp:195:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
<stdin>:2:8: note: scanning from here
return{
       ^
<stdin>:13:2: note: possible intended match here
 "Name": "AnonClass",
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder clang-ppc64le-linux-test-suite running on ppc64le-clang-test-suite while building clang-tools-extra at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/95/builds/1692

Here is the relevant piece of the build log for the reference:

Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...
Emiting docs in md format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp && mkdir -p /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ rm -rf /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ mkdir -p /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
RUN: at line 2: clang-doc --format=html --output=/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=html --output=/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 3: clang-doc --format=md --output=/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=md --output=/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 4: FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp -check-prefix=JSON-INDEX
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp:195:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
<stdin>:2:8: note: scanning from here
return{
       ^
<stdin>:13:2: note: possible intended match here
 "Name": "AnonClass",
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder clang-debian-cpp20 running on clang-debian-cpp20 while building clang-tools-extra at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/108/builds/1641

Here is the relevant piece of the build log for the reference:

Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...
Emiting docs in md format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp && mkdir -p /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ rm -rf /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ mkdir -p /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
RUN: at line 2: clang-doc --format=html --output=/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=html --output=/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 3: clang-doc --format=md --output=/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=md --output=/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 4: FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp -check-prefix=JSON-INDEX
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp:195:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
<stdin>:2:8: note: scanning from here
return{
       ^
<stdin>:13:2: note: possible intended match here
 "Name": "AnonClass",
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-darwin running on doug-worker-3 while building clang-tools-extra at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/23/builds/1319

Here is the relevant piece of the build log for the reference:

Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang Tools :: clang-doc/basic-project.test' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 5 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp && mkdir -p /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build
+ rm -rf /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp
+ mkdir -p /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build
RUN: at line 2: sed 's|$test_dir|/Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/clang-tools-extra/test/clang-doc|g' /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/clang-tools-extra/test/clang-doc/Inputs/basic-project/database_template.json > /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
+ sed 's|$test_dir|/Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/clang-tools-extra/test/clang-doc|g' /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/clang-tools-extra/test/clang-doc/Inputs/basic-project/database_template.json
RUN: at line 3: clang-doc --format=html --output=/Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs --executor=all-TUs /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
+ clang-doc --format=html --output=/Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs --executor=all-TUs /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
[1/3] Processing file /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Rectangle.cpp
[2/3] Processing file /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Circle.cpp
[3/3] Processing file /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Calculator.cpp
RUN: at line 4: FileCheck /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/clang-tools-extra/test/clang-doc/basic-project.test -input-file=/Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/clang-tools-extra/test/clang-doc/basic-project.test -input-file=/Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js -check-prefix=JSON-INDEX
/Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/clang-tools-extra/test/clang-doc/basic-project.test:12:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
/Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js:2:8: note: scanning from here
return{
       ^
/Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js:3:2: note: possible intended match here
 "Name": "",
 ^

Input file: /Volumes/RAMDisk/buildbot-root/x86_64-darwin/build/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js
Check file: /Volumes/RAMDisk/buildbot-root/x86_64-darwin/llvm-project/clang-tools-extra/test/clang-doc/basic-project.test

-dump-input=help explains the following input dump.

Input was:
<<<<<<
           1: async function LoadIndex() { 
           2: return{ 
next:12'0            X error: no match found
           3:  "Name": "", 
next:12'0     ~~~~~~~~~~~~~
next:12'1      ?            possible intended match
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder clang-ppc64le-linux-multistage running on ppc64le-clang-multistage-test while building clang-tools-extra at step 5 "ninja check 1".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/76/builds/1281

Here is the relevant piece of the build log for the reference:

Step 5 (ninja check 1) failure: stage 1 checked (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...
Emiting docs in md format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp && mkdir -p /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ rm -rf /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ mkdir -p /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
RUN: at line 2: clang-doc --format=html --output=/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=html --output=/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 3: clang-doc --format=md --output=/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=md --output=/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 4: FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/namespace.cpp < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage1/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/namespace.cpp -check-prefix=JSON-INDEX
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/namespace.cpp:195:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
<stdin>:2:8: note: scanning from here
return{
       ^
<stdin>:13:2: note: possible intended match here
 "Name": "AnonClass",
...
Step 11 (ninja check 2) failure: stage 2 checked (failure)
******************** TEST 'Clang Tools :: clang-doc/basic-project.test' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 5 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp && mkdir -p /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build
+ rm -rf /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp
+ mkdir -p /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build
RUN: at line 2: sed 's|$test_dir|/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc|g' /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/Inputs/basic-project/database_template.json > /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
+ sed 's|$test_dir|/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc|g' /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/Inputs/basic-project/database_template.json
RUN: at line 3: clang-doc --format=html --output=/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs --executor=all-TUs /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
+ clang-doc --format=html --output=/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs --executor=all-TUs /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
[1/3] Processing file /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Calculator.cpp
[2/3] Processing file /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Rectangle.cpp
[3/3] Processing file /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Circle.cpp
RUN: at line 4: FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/basic-project.test -input-file=/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/basic-project.test -input-file=/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js -check-prefix=JSON-INDEX
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/basic-project.test:12:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js:2:8: note: scanning from here
return{
       ^
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js:3:2: note: possible intended match here
 "Name": "",
 ^

Input file: /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js
Check file: /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/clang-tools-extra/test/clang-doc/basic-project.test

-dump-input=help explains the following input dump.

Input was:
<<<<<<
           1: async function LoadIndex() { 
           2: return{ 
next:12'0            X error: no match found
           3:  "Name": "", 
next:12'0     ~~~~~~~~~~~~~
next:12'1      ?            possible intended match
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 23, 2024

LLVM Buildbot has detected a new failure on builder clang-aarch64-sve-vls-2stage running on linaro-g3-01 while building clang-tools-extra at step 12 "ninja check 2".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/4/builds/898

Here is the relevant piece of the build log for the reference:

Step 12 (ninja check 2) failure: stage 2 checked (failure)
******************** TEST 'Clang Tools :: clang-doc/basic-project.test' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 5 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp && mkdir -p /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build
+ rm -rf /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp
+ mkdir -p /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build
RUN: at line 2: sed 's|$test_dir|/home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/llvm/clang-tools-extra/test/clang-doc|g' /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/llvm/clang-tools-extra/test/clang-doc/Inputs/basic-project/database_template.json > /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
+ sed 's|$test_dir|/home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/llvm/clang-tools-extra/test/clang-doc|g' /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/llvm/clang-tools-extra/test/clang-doc/Inputs/basic-project/database_template.json
RUN: at line 3: clang-doc --format=html --output=/home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs --executor=all-TUs /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
+ clang-doc --format=html --output=/home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs --executor=all-TUs /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
[1/3] Processing file /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/llvm/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Calculator.cpp
[2/3] Processing file /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/llvm/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Rectangle.cpp
[3/3] Processing file /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/llvm/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Circle.cpp
RUN: at line 4: FileCheck /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/llvm/clang-tools-extra/test/clang-doc/basic-project.test -input-file=/home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/llvm/clang-tools-extra/test/clang-doc/basic-project.test -input-file=/home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js -check-prefix=JSON-INDEX
/home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/llvm/clang-tools-extra/test/clang-doc/basic-project.test:12:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
/home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js:2:8: note: scanning from here
return{
       ^
/home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js:3:2: note: possible intended match here
 "Name": "",
 ^

Input file: /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/stage2/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js
Check file: /home/tcwg-buildbot/worker/clang-aarch64-sve-vls-2stage/llvm/clang-tools-extra/test/clang-doc/basic-project.test

-dump-input=help explains the following input dump.

Input was:
<<<<<<
           1: async function LoadIndex() { 
           2: return{ 
next:12'0            X error: no match found
           3:  "Name": "", 
next:12'0     ~~~~~~~~~~~~~
next:12'1      ?            possible intended match
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 24, 2024

LLVM Buildbot has detected a new failure on builder clang-x86_64-debian-fast running on gribozavr4 while building clang-tools-extra at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/56/builds/3219

Here is the relevant piece of the build log for the reference:

Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang Tools :: clang-doc/basic-project.test' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 5 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp && mkdir -p /b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs /b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build
+ rm -rf /b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp
+ mkdir -p /b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs /b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build
RUN: at line 2: sed 's|$test_dir|/b/1/clang-x86_64-debian-fast/llvm.src/clang-tools-extra/test/clang-doc|g' /b/1/clang-x86_64-debian-fast/llvm.src/clang-tools-extra/test/clang-doc/Inputs/basic-project/database_template.json > /b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
+ sed 's|$test_dir|/b/1/clang-x86_64-debian-fast/llvm.src/clang-tools-extra/test/clang-doc|g' /b/1/clang-x86_64-debian-fast/llvm.src/clang-tools-extra/test/clang-doc/Inputs/basic-project/database_template.json
RUN: at line 3: clang-doc --format=html --output=/b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs --executor=all-TUs /b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
+ clang-doc --format=html --output=/b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs --executor=all-TUs /b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/build/compile_commands.json
[1/3] Processing file /b/1/clang-x86_64-debian-fast/llvm.src/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Rectangle.cpp
[2/3] Processing file /b/1/clang-x86_64-debian-fast/llvm.src/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Calculator.cpp
[3/3] Processing file /b/1/clang-x86_64-debian-fast/llvm.src/clang-tools-extra/test/clang-doc/Inputs/basic-project/src/Circle.cpp
RUN: at line 4: FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/clang-tools-extra/test/clang-doc/basic-project.test -input-file=/b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/clang-tools-extra/test/clang-doc/basic-project.test -input-file=/b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js -check-prefix=JSON-INDEX
/b/1/clang-x86_64-debian-fast/llvm.src/clang-tools-extra/test/clang-doc/basic-project.test:12:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
/b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js:2:8: note: scanning from here
return{
       ^
/b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js:3:2: note: possible intended match here
 "Name": "",
 ^

Input file: /b/1/clang-x86_64-debian-fast/llvm.obj/tools/clang/tools/extra/test/clang-doc/Output/basic-project.test.tmp/docs/index_json.js
Check file: /b/1/clang-x86_64-debian-fast/llvm.src/clang-tools-extra/test/clang-doc/basic-project.test

-dump-input=help explains the following input dump.

Input was:
<<<<<<
           1: async function LoadIndex() { 
           2: return{ 
next:12'0            X error: no match found
           3:  "Name": "", 
next:12'0     ~~~~~~~~~~~~~
next:12'1      ?            possible intended match
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 24, 2024

LLVM Buildbot has detected a new failure on builder premerge-monolithic-linux running on premerge-linux-1 while building clang-tools-extra at step 7 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/153/builds/4021

Here is the relevant piece of the build log for the reference:

Step 7 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...
Emiting docs in md format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /build/buildbot/premerge-monolithic-linux/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp && mkdir -p /build/buildbot/premerge-monolithic-linux/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ rm -rf /build/buildbot/premerge-monolithic-linux/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ mkdir -p /build/buildbot/premerge-monolithic-linux/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
RUN: at line 2: clang-doc --format=html --output=/build/buildbot/premerge-monolithic-linux/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /build/buildbot/premerge-monolithic-linux/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=html --output=/build/buildbot/premerge-monolithic-linux/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /build/buildbot/premerge-monolithic-linux/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/build/buildbot/premerge-monolithic-linux/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /build/buildbot/premerge-monolithic-linux/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 3: clang-doc --format=md --output=/build/buildbot/premerge-monolithic-linux/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /build/buildbot/premerge-monolithic-linux/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=md --output=/build/buildbot/premerge-monolithic-linux/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /build/buildbot/premerge-monolithic-linux/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/build/buildbot/premerge-monolithic-linux/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /build/buildbot/premerge-monolithic-linux/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 4: FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp < /build/buildbot/premerge-monolithic-linux/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp -check-prefix=JSON-INDEX
/build/buildbot/premerge-monolithic-linux/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp:195:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
<stdin>:2:8: note: scanning from here
return{
       ^
<stdin>:13:2: note: possible intended match here
 "Name": "AnonClass",
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 25, 2024

LLVM Buildbot has detected a new failure on builder llvm-x86_64-debian-dylib running on gribozavr4 while building clang-tools-extra at step 9 "test-build-unified-tree-check-clang-extra".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/60/builds/3302

Here is the relevant piece of the build log for the reference:

Step 9 (test-build-unified-tree-check-clang-extra) failure: test (failure)
******************** TEST 'Clang Tools :: clang-doc/namespace.cpp' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
Emiting docs in html format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...
Emiting docs in md format.
Mapping decls...
Collecting infos...
Reducing 9 infos...
Generating docs...
Generating assets for docs...

--
Command Output (stderr):
--
RUN: at line 1: rm -rf /b/1/llvm-x86_64-debian-dylib/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp && mkdir -p /b/1/llvm-x86_64-debian-dylib/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ rm -rf /b/1/llvm-x86_64-debian-dylib/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
+ mkdir -p /b/1/llvm-x86_64-debian-dylib/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp
RUN: at line 2: clang-doc --format=html --output=/b/1/llvm-x86_64-debian-dylib/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /b/1/llvm-x86_64-debian-dylib/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=html --output=/b/1/llvm-x86_64-debian-dylib/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /b/1/llvm-x86_64-debian-dylib/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/b/1/llvm-x86_64-debian-dylib/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /b/1/llvm-x86_64-debian-dylib/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 3: clang-doc --format=md --output=/b/1/llvm-x86_64-debian-dylib/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /b/1/llvm-x86_64-debian-dylib/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
+ clang-doc --format=md --output=/b/1/llvm-x86_64-debian-dylib/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp --executor=standalone /b/1/llvm-x86_64-debian-dylib/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp
Error while trying to load a compilation database:
Could not auto-detect compilation database for file "/b/1/llvm-x86_64-debian-dylib/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp"
No compilation database found in /b/1/llvm-x86_64-debian-dylib/llvm-project/clang-tools-extra/test/clang-doc or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.
RUN: at line 4: FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp < /b/1/llvm-x86_64-debian-dylib/build/tools/clang/tools/extra/test/clang-doc/Output/namespace.cpp.tmp/index_json.js -check-prefix=JSON-INDEX
+ FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp -check-prefix=JSON-INDEX
/b/1/llvm-x86_64-debian-dylib/llvm-project/clang-tools-extra/test/clang-doc/namespace.cpp:195:21: error: JSON-INDEX-NEXT: expected string not found in input
// JSON-INDEX-NEXT: "USR": "{{([0-9A-F]{40})}}",
                    ^
<stdin>:2:8: note: scanning from here
return{
       ^
<stdin>:13:2: note: possible intended match here
 "Name": "AnonClass",
...

yuxuanchen1997 pushed a commit that referenced this pull request Jul 25, 2024
Summary:
This broke the build due to failing some clang-tidy checks:
https://lab.llvm.org/buildbot/#/builders/145/builds/789

Test Plan: 

Reviewers: 

Subscribers: 

Tasks: 

Tags: 


Differential Revision: https://phabricator.intern.facebook.com/D60251188
yuxuanchen1997 pushed a commit that referenced this pull request Jul 25, 2024
Summary:
This patch fixes the broken test caused by clang-doc which was caused by
#100251

https://lab.llvm.org/buildbot/#/builders/144/builds/3080

Test Plan: 

Reviewers: 

Subscribers: 

Tasks: 

Tags: 


Differential Revision: https://phabricator.intern.facebook.com/D60251218
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants