summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorChristian Kvalheim <christkv@gmail.com>2015-08-04 09:11:28 -0400
committerMax Hirschhorn <max.hirschhorn@mongodb.com>2015-08-04 09:11:28 -0400
commit8c8da71903a3325d4df19faaf2745f23bfbe7302 (patch)
treed7eb20086298a31e56d3816446c1873620134ad6 /buildscripts
parent3041da9fc2127a3193a769c2a708261700e690bb (diff)
downloadmongo-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 'buildscripts')
-rw-r--r--buildscripts/vcxproj.header4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/vcxproj.header b/buildscripts/vcxproj.header
index a7d041fa0e7..a179498c937 100644
--- a/buildscripts/vcxproj.header
+++ b/buildscripts/vcxproj.header
@@ -245,7 +245,7 @@
<Target Name="MongoShell"
BeforeTargets="ClCompile"
Outputs="$(MongoShell)\mongo.cpp"
- Inputs="$(MongoShell)\assert.js;$(MongoShell)\bulk_api.js;$(MongoShell)\collection.js;$(MongoShell)\db.js;$(MongoShell)\mongo.js;$(MongoShell)\mr.js;$(MongoShell)\query.js;$(MongoShell)\types.js;$(MongoShell)\upgrade_check.js;$(MongoShell)\utils.js;$(MongoShell)\utils_sh.js;$(MongoShell)\utils_auth.js" >
+ Inputs="$(MongoShell)\assert.js;$(MongoShell)\bulk_api.js;$(MongoShell)\collection.js;$(MongoShell)\crud_api.js;$(MongoShell)\db.js;$(MongoShell)\mongo.js;$(MongoShell)\mr.js;$(MongoShell)\query.js;$(MongoShell)\types.js;$(MongoShell)\upgrade_check.js;$(MongoShell)\utils.js;$(MongoShell)\utils_sh.js;$(MongoShell)\utils_auth.js" >
- <Exec Command="python site_scons\site_tools\jstoh.py $(MongoShell)\mongo.cpp $(MongoShell)\assert.js $(MongoShell)\bulk_api.js $(MongoShell)\collection.js $(MongoShell)\db.js $(MongoShell)\mongo.js $(MongoShell)\mr.js $(MongoShell)\query.js $(MongoShell)\types.js $(MongoShell)\upgrade_check.js $(MongoShell)\utils.js $(MongoShell)\utils_sh.js $(MongoShell)\utils_auth.js" />
+ <Exec Command="python site_scons\site_tools\jstoh.py $(MongoShell)\mongo.cpp $(MongoShell)\assert.js $(MongoShell)\bulk_api.js $(MongoShell)\collection.js $(MongoShell)\crud_api.js $(MongoShell)\db.js $(MongoShell)\mongo.js $(MongoShell)\mr.js $(MongoShell)\query.js $(MongoShell)\types.js $(MongoShell)\upgrade_check.js $(MongoShell)\utils.js $(MongoShell)\utils_sh.js $(MongoShell)\utils_auth.js" />
</Target>