brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 55e389b Raw
21 lines · plain
1# This test diffs the various headers synced by cp-to-llvm.sh2# between libcxxabi and LLVM to ensure that they are the same.3 4# RUN: tail -n +3 %{libcxxabi}/src/demangle/ItaniumDemangle.h > %t.libcxxabi_demangle5# RUN: tail -n +3 %{llvm}/include/llvm/Demangle/ItaniumDemangle.h > %t.llvm_demangle6# RUN: diff %t.libcxxabi_demangle %t.llvm_demangle7 8# RUN: tail -n +3 %{libcxxabi}/src/demangle/ItaniumNodes.def > %t.libcxxabi_nodes9# RUN: tail -n +3 %{llvm}/include/llvm/Demangle/ItaniumNodes.def > %t.llvm_nodes10# RUN: diff %t.libcxxabi_nodes %t.llvm_nodes11 12# RUN: tail -n +3 %{libcxxabi}/src/demangle/StringViewExtras.h > %t.libcxxabi_extras13# RUN: tail -n +3 %{llvm}/include/llvm/Demangle/StringViewExtras.h > %t.llvm_extras14# RUN: diff %t.libcxxabi_extras %t.llvm_extras15 16# RUN: tail -n +3 %{libcxxabi}/src/demangle/Utility.h > %t.libcxxabi_utility17# RUN: tail -n +3 %{llvm}/include/llvm/Demangle/Utility.h > %t.llvm_utility18# RUN: diff %t.libcxxabi_utility %t.llvm_utility19 20# RUN: diff %{libcxxabi}/test/DemangleTestCases.inc %{llvm}/include/llvm/Testing/Demangle/DemangleTestCases.inc21