[libcxx-commits] [libcxxabi] 061ef3c - [libcxxabi][test] Check that all copied files are synced between llvm and libcxxabi (#142262)

via libcxx-commits libcxx-commits at lists.llvm.org
Sat May 31 13:18:58 PDT 2025


Author: Michael Buch
Date: 2025-05-31T21:18:54+01:00
New Revision: 061ef3c6e22722c31986182e14a5b9c0a117c661

URL: https://github.com/llvm/llvm-project/commit/061ef3c6e22722c31986182e14a5b9c0a117c661
DIFF: https://github.com/llvm/llvm-project/commit/061ef3c6e22722c31986182e14a5b9c0a117c661.diff

LOG: [libcxxabi][test] Check that all copied files are synced between llvm and libcxxabi (#142262)

This patch expands the list of files we check to all the ones that are
copied via `cp-to-llvm.sh`.

Added: 
    

Modified: 
    libcxxabi/test/itanium_demangle_matches_llvm.sh.test

Removed: 
    


################################################################################
diff  --git a/libcxxabi/test/itanium_demangle_matches_llvm.sh.test b/libcxxabi/test/itanium_demangle_matches_llvm.sh.test
index 31371d121fbdd..55e389bdd7210 100644
--- a/libcxxabi/test/itanium_demangle_matches_llvm.sh.test
+++ b/libcxxabi/test/itanium_demangle_matches_llvm.sh.test
@@ -1,6 +1,20 @@
-# This test 
diff s the ItaniumDemangle.h header in libcxxabi and LLVM to ensure
-# that they are the same.
+# This test 
diff s the various headers synced by cp-to-llvm.sh
+# between libcxxabi and LLVM to ensure that they are the same.
 
 # RUN: tail -n +3 %{libcxxabi}/src/demangle/ItaniumDemangle.h > %t.libcxxabi_demangle
 # RUN: tail -n +3 %{llvm}/include/llvm/Demangle/ItaniumDemangle.h > %t.llvm_demangle
 # RUN: 
diff  %t.libcxxabi_demangle %t.llvm_demangle
+
+# RUN: tail -n +3 %{libcxxabi}/src/demangle/ItaniumNodes.def > %t.libcxxabi_nodes
+# RUN: tail -n +3 %{llvm}/include/llvm/Demangle/ItaniumNodes.def > %t.llvm_nodes
+# RUN: 
diff  %t.libcxxabi_nodes %t.llvm_nodes
+
+# RUN: tail -n +3 %{libcxxabi}/src/demangle/StringViewExtras.h > %t.libcxxabi_extras
+# RUN: tail -n +3 %{llvm}/include/llvm/Demangle/StringViewExtras.h > %t.llvm_extras
+# RUN: 
diff  %t.libcxxabi_extras %t.llvm_extras
+
+# RUN: tail -n +3 %{libcxxabi}/src/demangle/Utility.h > %t.libcxxabi_utility
+# RUN: tail -n +3 %{llvm}/include/llvm/Demangle/Utility.h > %t.llvm_utility
+# RUN: 
diff  %t.libcxxabi_utility %t.llvm_utility
+
+# RUN: 
diff  %{libcxxabi}/test/DemangleTestCases.inc %{llvm}/include/llvm/Testing/Demangle/DemangleTestCases.inc


        


More information about the libcxx-commits mailing list