summaryrefslogtreecommitdiff
path: root/src/mongo/util/future_test_edge_cases.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-53059 spelling Interruptable => InterruptibleBilly Donahue2020-12-081-11/+11
|
* SERVER-43418 ASSERT macro repairsBilly Donahue2019-10-021-4/+8
| | | | | - fix dangling else - all ASSERT* yield a stream expression for appending detail
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-1/+1
|
* SERVER-36359 Non-ready Futures don't actually complete SharedPromisesMathias Stearn2019-04-181-2/+19
|
* SERVER-36359 Add SharedSemiFuture::thenRunOn(exec) and make SSFs chainableMathias Stearn2019-04-181-34/+17
|
* SERVER-36359 Introduce SemiFuture<T> and ExecutorFuture<T>Mathias Stearn2019-04-111-0/+106
|
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-35682 Add SharedPromise and SharedSemiFuture typesMathias Stearn2018-11-301-0/+70
|
* SERVER-37804 Fix usage of a Future after waiting failsMathias Stearn2018-11-151-0/+92
|
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-8/+10
|
* SERVER-36384 Split up `future_test.cpp`.ADAM David Alan Martin2018-08-031-0/+83
Because this file instantiates a great deal of templates, it consumes a lot of CPU to compile in a single compiler execution. By splitting this file up, we can improve build times for this test by a great deal.