Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [dotest] Delete trivial inline test makefiles | Pavel Labath | 2019-09-05 | 1 | -2/+0 |
| | | | | | | inline tests are able to generate these automatically llvm-svn: 371015 | ||||
* | [dotest] Avoid the need for LEVEL= makefile boilerplate | Pavel Labath | 2019-09-04 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | Summary: Instead of each test case knowing its depth relative to the test root, we can just have dotest add the folder containing Makefile.rules to the include path. This was motivated by r370616, though I have been wanting to do this ever since we moved to building tests out-of-tree. The only manually modified files in this patch are lldbinline.py and plugins/builder_base.py. The rest of the patch has been produced by this shell command: find . \( -name Makefile -o -name '*.mk' \) -exec sed --in-place -e '/LEVEL *:\?=/d' -e '1,2{/^$/d}' -e 's,\$(LEVEL)/,,' {} + Reviewers: teemperor, aprantl, espindola, jfb Subscribers: emaste, javed.absar, arichardson, christof, arphaman, lldb-commits Differential Revision: https://reviews.llvm.org/D67083 llvm-svn: 370845 | ||||
* | [lldb][NFC] Also test operator new/new[]/delete/delete[]/comma/addr-of | Raphael Isemann | 2019-08-29 | 1 | -0/+18 |
| | | | | llvm-svn: 370315 | ||||
* | [TestCppOperators] Enable TestCppOperators on Windows. | Jonas Devlieghere | 2019-08-28 | 1 | -2/+1 |
| | | | | | | | | | This test is passing on the Windows bot: Unexpected Passing Tests (1): lldb-Suite :: lang/cpp/operators/TestCppOperators.py llvm-svn: 370227 | ||||
* | [lldb][NFC] Test named operators like new and function names that might ↵ | Raphael Isemann | 2019-08-28 | 1 | -0/+18 |
| | | | | | | confuse LLDB llvm-svn: 370199 | ||||
* | [lldb][NFC] Actually run all expects in lang/cpp/operators | Raphael Isemann | 2019-08-28 | 1 | -12/+6 |
| | | | | | | | | | | | | Apparently inline tests stop running anything after an empty line behind an self.expect, which is a very good approach that could never cause people to write tests that never run. This patch removes all the empty lines so that all this test is actually run. Also fixes the broken expects that only passed because they weren't run before. llvm-svn: 370195 | ||||
* | [lldb][NFC] Extend operator test case with conversion operators | Raphael Isemann | 2019-08-28 | 1 | -0/+9 |
| | | | | llvm-svn: 370194 | ||||
* | [lldb][NFC] Test custom C++ operators | Raphael Isemann | 2019-08-28 | 3 | -0/+150 |
llvm-svn: 370186 |