[Lldb-commits] [PATCH] D50620: Added test for Core/Range class.

2018-08-13 Thread Raphael Isemann via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL339611: Added test for Core/Range class. (authored by teemperor, committed by ). Herald added a subscriber: llvm-commits. Changed prior to commit: https://reviews.llvm.org/D50620?vs=160439&id=160441#toc

[Lldb-commits] [PATCH] D50620: Added test for Core/Range class.

2018-08-13 Thread Raphael Isemann via Phabricator via lldb-commits
teemperor updated this revision to Diff 160439. teemperor added a comment. - Addressed Vedant's comments (thanks!) https://reviews.llvm.org/D50620 Files: unittests/Core/CMakeLists.txt unittests/Core/RangeTest.cpp Index: unittests/Core/RangeTest.cpp =

[Lldb-commits] [PATCH] D50620: Added test for Core/Range class.

2018-08-13 Thread Vedant Kumar via Phabricator via lldb-commits
vsk accepted this revision. vsk added a comment. This revision is now accepted and ready to land. Thanks, looks good with nitpicks. Comment at: unittests/Core/RangeTest.cpp:139 + RangeT r; + // FIXME: This is probably not intended. + EXPECT_TRUE(r.ContainsEndInclusive(0)); -

[Lldb-commits] [PATCH] D50620: Added test for Core/Range class.

2018-08-12 Thread Raphael Isemann via Phabricator via lldb-commits
teemperor updated this revision to Diff 160286. teemperor added a comment. - Fixed typo in CMakeLists https://reviews.llvm.org/D50620 Files: unittests/Core/CMakeLists.txt unittests/Core/RangeTest.cpp Index: unittests/Core/RangeTest.cpp ==

[Lldb-commits] [PATCH] D50620: Added test for Core/Range class.

2018-08-12 Thread Raphael Isemann via Phabricator via lldb-commits
teemperor added a comment. (Also we maybe might want to merge the functionalities of Range and VMRange in the future). Repository: rLLDB LLDB https://reviews.llvm.org/D50620 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.

[Lldb-commits] [PATCH] D50620: Added test for Core/Range class.

2018-08-12 Thread Raphael Isemann via Phabricator via lldb-commits
teemperor created this revision. teemperor added a reviewer: vsk. Herald added a subscriber: mgorny. We can optimize and refactor some of the classes in RangeMap.h, but first we should have some tests for all the data structures in there. This adds a first batch of tests for the Range class itsel