summaryrefslogtreecommitdiff
path: root/dbtests
diff options
context:
space:
mode:
authorDwight <dmerriman@gmail.com>2010-04-27 15:27:52 -0400
committerDwight <dmerriman@gmail.com>2010-04-27 15:27:52 -0400
commitbd28578ab81c87f1b685237117bd0b5624773ccc (patch)
tree63e2b105a0d8a0d18ebc2f2f75f64c5a5f2527c6 /dbtests
parentb95d9603a0b41cef870f5d8142921f235a1c0fad (diff)
downloadmongo-bd28578ab81c87f1b685237117bd0b5624773ccc.tar.gz
stdafx->pch
Diffstat (limited to 'dbtests')
-rw-r--r--dbtests/basictests.cpp2
-rw-r--r--dbtests/btreetests.cpp2
-rw-r--r--dbtests/clienttests.cpp2
-rw-r--r--dbtests/cursortests.cpp2
-rw-r--r--dbtests/dbtests.cpp2
-rw-r--r--dbtests/framework.cpp2
-rw-r--r--dbtests/framework.h2
-rw-r--r--dbtests/jsobjtests.cpp2
-rw-r--r--dbtests/jsontests.cpp2
-rw-r--r--dbtests/jstests.cpp4
-rw-r--r--dbtests/matchertests.cpp2
-rw-r--r--dbtests/namespacetests.cpp2
-rw-r--r--dbtests/pairingtests.cpp2
-rw-r--r--dbtests/pdfiletests.cpp2
-rw-r--r--dbtests/queryoptimizertests.cpp2
-rw-r--r--dbtests/querytests.cpp2
-rw-r--r--dbtests/repltests.cpp2
-rw-r--r--dbtests/socktests.cpp2
-rw-r--r--dbtests/threadedtests.cpp2
-rw-r--r--dbtests/updatetests.cpp2
20 files changed, 21 insertions, 21 deletions
diff --git a/dbtests/basictests.cpp b/dbtests/basictests.cpp
index 85e04bb48aa..2938910a3b6 100644
--- a/dbtests/basictests.cpp
+++ b/dbtests/basictests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "dbtests.h"
#include "../util/base64.h"
diff --git a/dbtests/btreetests.cpp b/dbtests/btreetests.cpp
index 510244d666c..cb569310c02 100644
--- a/dbtests/btreetests.cpp
+++ b/dbtests/btreetests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../db/db.h"
#include "../db/btree.h"
diff --git a/dbtests/clienttests.cpp b/dbtests/clienttests.cpp
index 1d4e1d6bfe2..7b151376dbf 100644
--- a/dbtests/clienttests.cpp
+++ b/dbtests/clienttests.cpp
@@ -16,7 +16,7 @@
// client.cpp
-#include "stdafx.h"
+#include "pch.h"
#include "../client/dbclient.h"
#include "dbtests.h"
#include "../db/concurrency.h"
diff --git a/dbtests/cursortests.cpp b/dbtests/cursortests.cpp
index f14c5fadca8..8d2a0ac00b2 100644
--- a/dbtests/cursortests.cpp
+++ b/dbtests/cursortests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../db/db.h"
#include "../db/clientcursor.h"
#include "../db/instance.h"
diff --git a/dbtests/dbtests.cpp b/dbtests/dbtests.cpp
index 4b81ea97e96..195a1d17d76 100644
--- a/dbtests/dbtests.cpp
+++ b/dbtests/dbtests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "dbtests.h"
diff --git a/dbtests/framework.cpp b/dbtests/framework.cpp
index 0f7636d070b..2222e18a967 100644
--- a/dbtests/framework.cpp
+++ b/dbtests/framework.cpp
@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include <boost/program_options.hpp>
#undef assert
diff --git a/dbtests/framework.h b/dbtests/framework.h
index 9774832921b..8969fe21c3b 100644
--- a/dbtests/framework.h
+++ b/dbtests/framework.h
@@ -21,7 +21,7 @@
simple portable regression system
*/
-#include "../stdafx.h"
+#include "../pch.h"
#define ASSERT_EXCEPTION(a,b) \
try { \
diff --git a/dbtests/jsobjtests.cpp b/dbtests/jsobjtests.cpp
index 8f9991b435f..67e62b34e56 100644
--- a/dbtests/jsobjtests.cpp
+++ b/dbtests/jsobjtests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../db/jsobj.h"
#include "../db/jsobjmanipulator.h"
#include "../db/json.h"
diff --git a/dbtests/jsontests.cpp b/dbtests/jsontests.cpp
index 3ab25ed3944..a45f97f90ca 100644
--- a/dbtests/jsontests.cpp
+++ b/dbtests/jsontests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../db/jsobj.h"
#include "../db/json.h"
diff --git a/dbtests/jstests.cpp b/dbtests/jstests.cpp
index 0ecfd4297ad..009bd3fda99 100644
--- a/dbtests/jstests.cpp
+++ b/dbtests/jstests.cpp
@@ -17,10 +17,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../db/instance.h"
-#include "../stdafx.h"
+#include "../pch.h"
#include "../scripting/engine.h"
#include "dbtests.h"
diff --git a/dbtests/matchertests.cpp b/dbtests/matchertests.cpp
index 5338ad800cb..696c924e1aa 100644
--- a/dbtests/matchertests.cpp
+++ b/dbtests/matchertests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../db/matcher.h"
#include "../db/json.h"
diff --git a/dbtests/namespacetests.cpp b/dbtests/namespacetests.cpp
index a1e69f0fc8b..7457114b355 100644
--- a/dbtests/namespacetests.cpp
+++ b/dbtests/namespacetests.cpp
@@ -18,7 +18,7 @@
*/
// Where IndexDetails defined.
-#include "stdafx.h"
+#include "pch.h"
#include "../db/namespace.h"
#include "../db/db.h"
diff --git a/dbtests/pairingtests.cpp b/dbtests/pairingtests.cpp
index b11a37ee29a..d432d5589ea 100644
--- a/dbtests/pairingtests.cpp
+++ b/dbtests/pairingtests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../db/replpair.h"
#include "dbtests.h"
#include "mockdbclient.h"
diff --git a/dbtests/pdfiletests.cpp b/dbtests/pdfiletests.cpp
index 522afcdab2f..026d3138f7c 100644
--- a/dbtests/pdfiletests.cpp
+++ b/dbtests/pdfiletests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../db/pdfile.h"
#include "../db/db.h"
diff --git a/dbtests/queryoptimizertests.cpp b/dbtests/queryoptimizertests.cpp
index d757f1a4a01..e8affcc611b 100644
--- a/dbtests/queryoptimizertests.cpp
+++ b/dbtests/queryoptimizertests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../db/queryoptimizer.h"
#include "../db/db.h"
diff --git a/dbtests/querytests.cpp b/dbtests/querytests.cpp
index 4e4823017dc..7de33a47c4f 100644
--- a/dbtests/querytests.cpp
+++ b/dbtests/querytests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../db/query.h"
#include "../db/db.h"
diff --git a/dbtests/repltests.cpp b/dbtests/repltests.cpp
index 5986502aed5..3b643a148e4 100644
--- a/dbtests/repltests.cpp
+++ b/dbtests/repltests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../db/repl.h"
#include "../db/db.h"
diff --git a/dbtests/socktests.cpp b/dbtests/socktests.cpp
index 5ca253b36c5..267b1d647b5 100644
--- a/dbtests/socktests.cpp
+++ b/dbtests/socktests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../util/sock.h"
#include "dbtests.h"
diff --git a/dbtests/threadedtests.cpp b/dbtests/threadedtests.cpp
index 6691e66d531..6046fcb2a9b 100644
--- a/dbtests/threadedtests.cpp
+++ b/dbtests/threadedtests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../bson/util/atomic_int.h"
#include "../util/mvar.h"
#include "../util/thread_pool.h"
diff --git a/dbtests/updatetests.cpp b/dbtests/updatetests.cpp
index 0203cde921d..17f861ec2e8 100644
--- a/dbtests/updatetests.cpp
+++ b/dbtests/updatetests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../db/query.h"
#include "../db/db.h"