summaryrefslogtreecommitdiff
path: root/dbtests
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2010-12-29 20:08:21 -0500
committerMathias Stearn <mathias@10gen.com>2010-12-29 20:08:21 -0500
commit4501105b7e91afe055aea736ce768153fc364bce (patch)
tree2bc940ca4112bd3b56827529f5d3b925d3f6c9fd /dbtests
parentfd6681f26fd6b97418fe39a3912416ef3a39d3e3 (diff)
downloadmongo-4501105b7e91afe055aea736ce768153fc364bce.tar.gz
enableDurability() is now a static member called autmatically by dur::startup()
Diffstat (limited to 'dbtests')
-rw-r--r--dbtests/framework.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/dbtests/framework.cpp b/dbtests/framework.cpp
index 153c931dd62..5f784882b2a 100644
--- a/dbtests/framework.cpp
+++ b/dbtests/framework.cpp
@@ -205,7 +205,6 @@ namespace mongo {
}
if( params.count("dur") || cmdLine.dur ) {
cmdLine.dur = true;
- dur::enableDurability();
}
if (params.count("debug") || params.count("verbose") ) {
@@ -268,7 +267,7 @@ namespace mongo {
filter = params["filter"].as<string>();
}
- getDur().startup();
+ dur::startup();
int ret = run(suites,filter);