diff options
author | Christian Kvalheim <christkv@gmail.com> | 2015-08-04 09:11:28 -0400 |
---|---|---|
committer | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2015-08-04 09:11:28 -0400 |
commit | 8c8da71903a3325d4df19faaf2745f23bfbe7302 (patch) | |
tree | d7eb20086298a31e56d3816446c1873620134ad6 /src/mongo/shell/SConscript | |
parent | 3041da9fc2127a3193a769c2a708261700e690bb (diff) | |
download | mongo-8c8da71903a3325d4df19faaf2745f23bfbe7302.tar.gz |
SERVER-17953 Implement Driver CRUD API Spec in shell
Closes #1004.
Signed-off-by: Max Hirschhorn <max.hirschhorn@mongodb.com>
- Moved CRUD API implementation into separate file to workaround 65K
string length compiler limit on Windows.
- Fixed test to ignore modifiedCount property (i.e. nModified) when
not using write commands.
Diffstat (limited to 'src/mongo/shell/SConscript')
-rw-r--r-- | src/mongo/shell/SConscript | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/shell/SConscript b/src/mongo/shell/SConscript index 0df703369f4..0541400a9e7 100644 --- a/src/mongo/shell/SConscript +++ b/src/mongo/shell/SConscript @@ -2,13 +2,14 @@ Import("env") -# if you add a file here, you need to add it in scripting/engine.cpp and shell/createCPPfromJavaScriptFiles.js as well +# Files added here need to be added in scripting/engine.cpp and buildscripts/vcxproj.header as well. env.JSHeader( target="mongo.cpp", source=[ "assert.js", "bulk_api.js", "collection.js", + "crud_api.js", "db.js", "explain_query.js", "explainable.js", @@ -23,7 +24,8 @@ env.JSHeader( ], ) -# if you add a file here, you need to add it in shell/shell_utils.cpp and shell/createCPPfromJavaScriptFiles.js as well +# Files added here need to be added in shell/shell_utils.cpp and buildscripts/vcxproj.header as +# well. env.JSHeader( target="mongo-server.cpp", source=[ |