summaryrefslogtreecommitdiff
path: root/SConscript.smoke
diff options
context:
space:
mode:
authorDan Crosta <dcrosta@10gen.com>2012-02-23 17:28:59 -0500
committerDan Crosta <dcrosta@10gen.com>2012-02-23 17:32:02 -0500
commit51e9b45d893ab822f3885c42d7347572b977c1f6 (patch)
treed3452c72c97ef1f9d379150bb59a83c72f295f9c /SConscript.smoke
parent51fbd62859b801431cad4625804dfadbe26e6496 (diff)
downloadmongo-51e9b45d893ab822f3885c42d7347572b977c1f6.tar.gz
SERVER-5057 safely invoke smoke.py from SConscript.smoke
this correctly handles arguments with spaces, quotes, etc
Diffstat (limited to 'SConscript.smoke')
-rw-r--r--SConscript.smoke2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConscript.smoke b/SConscript.smoke
index 10e2462fa68..ccbdfae5c8b 100644
--- a/SConscript.smoke
+++ b/SConscript.smoke
@@ -44,7 +44,7 @@ def addSmoketest( name, deps ):
target = name[5].lower() + name[6:]
smokeArgs = smokeFlags + [target]
- addTest(name, deps, utils.smoke_command(*smokeArgs))
+ addTest(name, deps, utils.run_smoke_command(*smokeArgs))
addSmoketest( "smoke", [ add_exe( "test" ), add_exe( "mongod" ), add_exe( "mongo" ) ] )
addSmoketest( "smokePerf", [ add_exe("perftest") ] )