summaryrefslogtreecommitdiff
path: root/jstests/slowWeekly/indexbg2.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/slowWeekly/indexbg2.js')
-rw-r--r--jstests/slowWeekly/indexbg2.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/jstests/slowWeekly/indexbg2.js b/jstests/slowWeekly/indexbg2.js
index 1830f42118d..0b5edc79aa2 100644
--- a/jstests/slowWeekly/indexbg2.js
+++ b/jstests/slowWeekly/indexbg2.js
@@ -1,5 +1,10 @@
// Test background index creation w/ constraints
+load( "jstests/libs/slow_weekly_util.js" )
+
+testServer = new SlowWeeklyMongod( "indexbg2" )
+db = testServer.getDB( "test" );
+
parallel = function() {
return db[ baseName + "_parallelStatus" ];
}
@@ -81,3 +86,5 @@ doTest = function(dropDups) {
doTest( "false" );
doTest( "true" );
+
+testServer.stop();