https://github.com/evelez7 created https://github.com/llvm/llvm-project/pull/184671
It seems like the order of the all-files.md output might be different on local machines, so make the check directives `-DAG` for now. >From 52b8459af3c7a9169a4d5a581db30dcd339719d8 Mon Sep 17 00:00:00 2001 From: Erick Velez <[email protected]> Date: Wed, 4 Mar 2026 11:47:20 -0800 Subject: [PATCH] [clang-doc] Add DAG directive to MD "All files" test It seems like the order of the all-files.md output might be different on local machines, so make the check directives `-DAG` for now. --- clang-tools-extra/test/clang-doc/namespace.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/clang-tools-extra/test/clang-doc/namespace.cpp b/clang-tools-extra/test/clang-doc/namespace.cpp index 5ed27944c92fe..bb7f23adb0da3 100644 --- a/clang-tools-extra/test/clang-doc/namespace.cpp +++ b/clang-tools-extra/test/clang-doc/namespace.cpp @@ -363,11 +363,12 @@ class ClassInAnotherNamespace {}; // MD-ALL-FILES: ## [GlobalNamespace](GlobalNamespace{{[\/]}}index.md) // MD-ALL-FILES: ## [PrimaryNamespace](PrimaryNamespace{{[\/]}}index.md) +// COM: FIXME: The output from the sorted index should be deterministic. // MD-MUSTACHE-ALL-FILES: # All Files -// MD-MUSTACHE-ALL-FILES: ## [GlobalNamespace](GlobalNamespace{{[\/]}}index.md) -// MD-MUSTACHE-ALL-FILES: ## [PrimaryNamespace](PrimaryNamespace{{[\/]}}index.md) -// MD-MUSTACHE-ALL-FILES: ## [@nonymous_namespace](@nonymous_namespace{{[\/]}}index.md) -// MD-MUSTACHE-ALL-FILES: ## [AnotherNamespace](AnotherNamespace{{[\/]}}index.md) +// MD-MUSTACHE-ALL-FILES-DAG: ## [GlobalNamespace](GlobalNamespace{{[\/]}}index.md) +// MD-MUSTACHE-ALL-FILES-DAG: ## [PrimaryNamespace](PrimaryNamespace{{[\/]}}index.md) +// MD-MUSTACHE-ALL-FILES-DAG: ## [@nonymous_namespace](@nonymous_namespace{{[\/]}}index.md) +// MD-MUSTACHE-ALL-FILES-DAG: ## [AnotherNamespace](AnotherNamespace{{[\/]}}index.md) // MD-INDEX: # C/C++ Reference // MD-INDEX: * Namespace: [@nonymous_namespace](@nonymous_namespace) _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
