summaryrefslogtreecommitdiffstats
path: root/lldb/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* [dotest] Remove crashinfo hookPavel Labath2018-01-101-6/+0
| | | | | | | | | | | | | | | | Summary: This used to be important when all tests were run in a single process, but that has no longer been the case for a while. Furthermore, this hook fails to build on new mac versions for several people, and it's not clear whether fixing it is worth the effort. Reviewers: jingham, clayborg, davide Subscribers: lldb-commits Differential Revision: https://reviews.llvm.org/D41871 llvm-svn: 322167
* test infra: clear file-charged issues on rerun of fileTodd Fiala2016-10-011-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change addresses the corner case bug in the test infrastructure where a test file times out *outside* of any running test method. In those cases, the issue was charged to the file, not to a test method within the file. When that file is re-run successfully, none of the test-method-level successes would clear the file-level issue. This change fixes that: for all test files that are getting rerun (whether by being marked flaky or via the --rerun-all-issues flag), file-level test issues are searched for in each of those files. Each file-level issue found in the rerun file list then gets cleared. A test of this feature is added to issue_verification, using the technique there of moving the *.py.park file to *.py to do an end-to-end validation. This change also adds a .gitignore entry for pyenv project-level files and fixes up a few minor pep8 formatting violations in files I touched. Fixes: llvm.org/pr27423 llvm-svn: 282990
* Add StructuredData plugin type; showcase with new DarwinLog featureTodd Fiala2016-08-191-0/+11
| | | | | | | | | | | | Take 2, with missing cmake line fixed. Build tested on Ubuntu 14.04 with clang-3.6. See docs/structured_data/StructuredDataPlugins.md for details. differential review: https://reviews.llvm.org/D22976 reviewers: clayborg, jingham llvm-svn: 279202
* Revert "Add StructuredData plugin type; showcase with new DarwinLog feature"Todd Fiala2016-08-191-11/+0
| | | | | | This reverts commit 1d885845d1451e7b232f53fba2e36be67aadabd8. llvm-svn: 279200
* Add StructuredData plugin type; showcase with new DarwinLog featureTodd Fiala2016-08-191-0/+11
| | | | | | | | | See docs/structured_data/StructuredDataPlugins.md for details. differential review: https://reviews.llvm.org/D22976 reviewers: clayborg, jingham llvm-svn: 279198
* [lldb] Ignore various test artifacts (NFCI)Vedant Kumar2016-08-011-0/+2
| | | | | | Differential Revision: https://reviews.llvm.org/D22988 llvm-svn: 277346
* Ignore clang-module-cache directories that may be createdJason Molenda2016-07-191-0/+2
| | | | | | in the testsuite directory while it runs. llvm-svn: 275944
* Revert r273524, it may have been the cause of a linux testbot failureJason Molenda2016-06-231-1/+1
| | | | | | | | for TestNamespaceLookup.py; didn't see anything obviously wrong so I'll need to look at this more closely before re-committing. (passed OK on macOS ;) llvm-svn: 273531
* Do some minor renames of "Mac OS X" to "macOS".Jason Molenda2016-06-231-1/+1
| | | | | | | | | There's uses of "macosx" that will be more tricky to change, like in triples (e.g. "x86_64-apple-macosx10.11") - for now I'm just updating source comments and strings printed for humans. llvm-svn: 273524
* modify Xcode build to use cmake/ninja for internal llvm/clangTodd Fiala2016-01-281-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change restores the Xcode build to working after Makefile support was stripped from LLVM and clang recently. With this change, the Xcode build now requires cmake (2.8.12.2+). The cmake must either be on the path that Xcode sees, or it must exist in one of the following locations: * /usr/local/bin/cmake * /opt/local/bin/cmake * $HOME/bin/cmake If the ninja build tool is present on the path, it will be used. If not, ninja will be cloned (via git), bootstrap-built, and used for the llvm/clang build. LLDB now requires a minimum deployment target of OS X 10.9. Prior to this, it was 10.8. The llvm/clang cmake build will not run with Xcode 7.2 or Xcode 7.3 beta's compiler with the minimum deployment target set to anything lower than 10.9. This is related to #include <atomic>. When llvm or clang source code does not exist in the lldb tree, it will be cloned via git using http://llvm.org/git/{project}.git. Previously it used SVN. If this causes any heartache, we can make this smarter, autodetect an embedded svn and use svn instead. (And/or use SVN if a git command is not available). This change also fixes an lldb-mi linkage failure (needed libncurses) as exposed by one of the LLVM libs. llvm-svn: 259027
* remove xcshareddata exclusion from .gitignore; add desktop and ↵Todd Fiala2015-12-181-2/+0
| | | | | | lldb-python-testsuite shared schemes used by Xcode buildbot llvm-svn: 256043
* Update .gitignore to include __pycache__ directories.Zachary Turner2015-12-031-0/+1
| | | | llvm-svn: 254634
* Update .gitignore to exclude pyproj folder (used for Python IDE)Zachary Turner2015-11-131-0/+1
| | | | llvm-svn: 252995
* Fix .gitignore to ignore symlinks.Chaoren Lin2015-03-311-3/+4
| | | | llvm-svn: 233645
* Added remote-build.py and wired it into Xcode for Linux and MacOSX+Linux builds.Chaoren Lin2015-02-031-0/+5
| | | | llvm-svn: 227908
* Add a method to disable the Windows crash / assert dialogs.Zachary Turner2014-12-121-0/+3
| | | | | | | | | | | | | | | | | | When running the test suite on Windows, we can't have Windows popping up dialogs when LLDB crashes in native code because it will hang the test suite. This patch silences those dialogs by checking an environment variable at startup and configuring Windows based on its value. This patch also adds an environment variable to force inferiors to never spawn in their own console window. This is useful to prevent new window spawm when running the test suite. Reviewed by: Scott Graham Differential Revision: http://reviews.llvm.org/D6628 llvm-svn: 224137
* Update .gitignore for MacOSXZachary Turner2014-08-141-0/+2
| | | | | | Differential Revision: http://reviews.llvm.org/D4912 llvm-svn: 215674
* Add lldb-gdbserver support for Linux x86_64.Todd Fiala2014-06-301-0/+3
| | | | | | | | | | | | | | | | | | | | | This change brings in lldb-gdbserver (llgs) specifically for Linux x86_64. (More architectures coming soon). Not every debugserver option is covered yet. Currently the lldb-gdbserver command line can start unattached, start attached to a pid (process-name attach not supported yet), or accept lldb attaching and launching a process or connecting by process id. The history of this large change can be found here: https://github.com/tfiala/lldb/tree/dev-tfiala-native-protocol-linux-x86_64 Until mid/late April, I was not sharing the work and continued to rebase it off of head (developed via id tfiala@google.com). I switched over to user todd.fiala@gmail.com in the middle, and once I went to github, I did merges rather than rebasing so I could share with others. llvm-svn: 212069
* spruce up .gitignoreSaleem Abdulrasool2014-03-181-0/+22
| | | | | | | Update gitignore to ignore additional temporary files and format more similar to LLVM's .gitignore. llvm-svn: 204111
* Move LLDBWrapPython.cpp into the build folder for Xcode builds so it doesn't ↵Greg Clayton2014-03-141-1/+0
| | | | | | muck with cmake builds. llvm-svn: 203956
* Remove "llvm" from list of things to ignore. This results in theJason Molenda2012-03-031-1/+0
| | | | | | | files in source/Plugins/Disassembler/llvm not being handled properly by git. llvm-svn: 151969
* Added a .gitignore so that "git status" isn'tSean Callanan2012-02-071-0/+7
quite as busy. llvm-svn: 150005
OpenPOWER on IntegriCloud