Harmonize Python shebangDifferential Revision: https://reviews.llvm.org/D83857
*** This commit represents a complete reformatting of the LLDB source code*** to conform to clang-format’s LLVM style. This kind of mass change has*** two obvious implications:Firstly, merging t
*** This commit represents a complete reformatting of the LLDB source code*** to conform to clang-format’s LLVM style. This kind of mass change has*** two obvious implications:Firstly, merging this particular commit into a downstream fork may be a hugeeffort. Alternatively, it may be worth merging all changes up to this commit,performing the same reformatting operation locally, and then discarding themerge for this particular commit. The commands used to accomplish thisreformatting were as follows (with current working directory as the root ofthe repository): find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} + find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ;The version of clang-format used was 3.9.0, and autopep8 was 1.2.4.Secondly, “blame” style tools will generally point to this commit instead ofa meaningful prior commit. There are alternatives available that will attemptto look through this change and find the appropriate prior commit. YMMV.llvm-svn: 280751
show more ...
Put progress.py back, apparently this can't be deleted.llvm-svn: 255159
Remove the -P option from dotest.pyThis was an option to display a graphical progress bar. Nobodyis using this, and it doesn't work correctly anyway with the newresult formatter.llvm-svn: 2551
Remove the -P option from dotest.pyThis was an option to display a graphical progress bar. Nobodyis using this, and it doesn't work correctly anyway with the newresult formatter.llvm-svn: 255153
Preparation for turning lldbsuite into a Python package.The idea behind this patch is to expose the meat ofLLDB's Python infrastructure (test suite, scripts, etc)as a single package. This makes
Preparation for turning lldbsuite into a Python package.The idea behind this patch is to expose the meat ofLLDB's Python infrastructure (test suite, scripts, etc)as a single package. This makes reusability and codesharing among sub-packages easy.Differential Revision: http://reviews.llvm.org/D14131llvm-svn: 251460