summaryrefslogtreecommitdiff
path: root/src/mongo/db/curop_test.cpp
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@mongodb.com>2015-06-01 17:27:57 -0400
committerAndy Schwerin <schwerin@mongodb.com>2015-06-02 12:02:30 -0400
commit908d0cedf82b50c93932916685c4f8fa4748cc6f (patch)
tree446f8c88bf9231e31187d593b17f41b8af3e55cc /src/mongo/db/curop_test.cpp
parent5f225a7464862686a8422bb02d1f638d5568d529 (diff)
downloadmongo-908d0cedf82b50c93932916685c4f8fa4748cc6f.tar.gz
Reapply "SERVER-14995 Move operation id, lockState and client fields to OperationContext."
This reverts commit e181ea38af737ef7aaf5f8228f870d8c7149b2bb.
Diffstat (limited to 'src/mongo/db/curop_test.cpp')
-rw-r--r--src/mongo/db/curop_test.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mongo/db/curop_test.cpp b/src/mongo/db/curop_test.cpp
index 17ac612c3a3..1f4f58153eb 100644
--- a/src/mongo/db/curop_test.cpp
+++ b/src/mongo/db/curop_test.cpp
@@ -33,6 +33,7 @@
#include "mongo/base/init.h"
#include "mongo/db/client.h"
#include "mongo/db/curop.h"
+#include "mongo/db/operation_context_noop.h"
#include "mongo/db/service_context.h"
#include "mongo/db/service_context_noop.h"
#include "mongo/stdx/memory.h"
@@ -77,7 +78,8 @@ namespace mongo {
TEST(TimeHasExpired, PosSimple) {
auto service = stdx::make_unique<ServiceContextNoop>();
auto client = service->makeClient("CurOpTest");
- CurOp curOp(client.get());
+ OperationContextNoop txn(client.get(), 100);
+ CurOp curOp(&txn);
curOp.setMaxTimeMicros(intervalShort);
curOp.ensureStarted();
sleepmicros(intervalLong);
@@ -88,7 +90,8 @@ namespace mongo {
TEST(TimeHasExpired, NegSimple) {
auto service = stdx::make_unique<ServiceContextNoop>();
auto client = service->makeClient("CurOpTest");
- CurOp curOp(client.get());
+ OperationContextNoop txn(client.get(), 100);
+ CurOp curOp(&txn);
curOp.setMaxTimeMicros(intervalLong);
curOp.ensureStarted();
sleepmicros(intervalShort);