diff options
author | Mathias Stearn <mathias@10gen.com> | 2014-09-30 16:18:16 -0400 |
---|---|---|
committer | Mathias Stearn <mathias@10gen.com> | 2014-10-01 16:51:15 -0400 |
commit | 9f4ebf0e4f61a6b64a20f7d400eb34d71fb8ea64 (patch) | |
tree | c280551fb2cfb263ab5c532ffc887533f0cd2a23 /buildscripts | |
parent | 017d360814e366b7c2a91b2320b45db49d158358 (diff) | |
download | mongo-9f4ebf0e4f61a6b64a20f7d400eb34d71fb8ea64.tar.gz |
SERVER-13635 Make dbtest take --storageEngine
Diffstat (limited to 'buildscripts')
-rwxr-xr-x | buildscripts/smoke.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py index 59319b63272..c42aa397d9f 100755 --- a/buildscripts/smoke.py +++ b/buildscripts/smoke.py @@ -521,6 +521,10 @@ def runTest(test, result): if smoke_db_prefix: dir_name = smoke_db_prefix + '/unittests' argv.extend(["--dbpath", dir_name] ) + + if storage_engine: + argv.extend(["--storageEngine", storage_engine]) + # more blech elif os.path.basename(path) in ['mongos', 'mongos.exe']: argv = [path, "--test"] |