diff options
author | Randolph Tan <randolph@10gen.com> | 2014-05-02 11:18:51 -0400 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2014-05-02 21:29:54 -0400 |
commit | 8fe31447b9d21521aa8022a24b4b1c27747c2ba5 (patch) | |
tree | 29bea5a23b3fcb3ed3da79f27443f2e94a9b8731 /SConscript.smoke | |
parent | 77560aae4f27785ed2005785c5d2310bdcee7129 (diff) | |
download | mongo-8fe31447b9d21521aa8022a24b4b1c27747c2ba5.tar.gz |
SERVER-13795 rename test binary to dbtest
Diffstat (limited to 'SConscript.smoke')
-rw-r--r-- | SConscript.smoke | 4 |
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' ) ]) |