summaryrefslogtreecommitdiff
path: root/SConscript.smoke
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2014-05-02 11:18:51 -0400
committerRandolph Tan <randolph@10gen.com>2014-05-02 21:29:54 -0400
commit8fe31447b9d21521aa8022a24b4b1c27747c2ba5 (patch)
tree29bea5a23b3fcb3ed3da79f27443f2e94a9b8731 /SConscript.smoke
parent77560aae4f27785ed2005785c5d2310bdcee7129 (diff)
downloadmongo-8fe31447b9d21521aa8022a24b4b1c27747c2ba5.tar.gz
SERVER-13795 rename test binary to dbtest
Diffstat (limited to 'SConscript.smoke')
-rw-r--r--SConscript.smoke4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConscript.smoke b/SConscript.smoke
index 582e88ff827..04caf4ed0c0 100644
--- a/SConscript.smoke
+++ b/SConscript.smoke
@@ -46,7 +46,7 @@ def addSmoketest( name, deps, extraSmokeArgs=[] ):
target = name
if name.startswith("smoke"):
if name == "smoke":
- target = File("test").path
+ target = File("dbtest").path
else:
target = name[5].lower() + name[6:]
@@ -66,7 +66,7 @@ def addSmokeSuite( name, suitefile, needMongod=False ):
smoke_args.append('--dont-start-mongod')
addTest(name, [suitefile], utils.run_smoke_command(*smoke_args))
-addSmoketest( "smoke", [ add_exe( "test" ), add_exe( "mongod" ), add_exe( "mongo" ) ] )
+addSmoketest( "smoke", [ add_exe( "dbtest" ), add_exe( "mongod" ), add_exe( "mongo" ) ] )
addSmoketest( "smokePerf", [ add_exe("perftest") ] )
addSmoketest( "mongosTest", [ add_exe( 'mongos' ) ])