summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorMark Benvenuto <markbenvenuto@users.noreply.github.com>2016-09-04 20:45:29 -0400
committerAlex Gorrod <alexander.gorrod@mongodb.com>2016-09-05 10:45:29 +1000
commitb3a2c4b5aa073b913d554d0b29b731debbbcb289 (patch)
tree10d52e8e9873203a486cb215c5c682e784dbdf70 /SConstruct
parent8af2972350d36276f101c49df37385e0c5c7624f (diff)
downloadmongo-b3a2c4b5aa073b913d554d0b29b731debbbcb289.tar.gz
WT-2555 Make test/Format and csuite run on Windows (#3011)
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct34
1 files changed, 14 insertions, 20 deletions
diff --git a/SConstruct b/SConstruct
index 55b3a2af4eb..c985800d13c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -443,28 +443,22 @@ t = env.Program("t_fops",
"test/fops/t.c"],
LIBS=[wtlib, shim, testutil] + wtlibs)
env.Append(CPPPATH=["test/utility"])
-env.Alias("check", env.SmokeTest(t))
Default(t)
-if useBdb:
- benv = env.Clone()
-
- benv.Append(CPPDEFINES=['BERKELEY_DB_PATH=\\"' + useBdb.replace("\\", "\\\\") + '\\"'])
-
- t = benv.Program("t_format",
- ["test/format/backup.c",
- "test/format/bdb.c",
- "test/format/bulk.c",
- "test/format/compact.c",
- "test/format/config.c",
- "test/format/ops.c",
- "test/format/salvage.c",
- "test/format/t.c",
- "test/format/util.c",
- "test/format/wts.c"],
- LIBS=[wtlib, shim, "libdb61"] + wtlibs)
- env.Alias("test", env.SmokeTest(t))
- Default(t)
+t = env.Program("t_format",
+ ["test/format/backup.c",
+ "test/format/bulk.c",
+ "test/format/compact.c",
+ "test/format/config.c",
+ "test/format/lrt.c",
+ "test/format/ops.c",
+ "test/format/rebalance.c",
+ "test/format/salvage.c",
+ "test/format/t.c",
+ "test/format/util.c",
+ "test/format/wts.c"],
+ LIBS=[wtlib, shim, testutil] + wtlibs)
+Default(t)
#env.Program("t_thread",
#["test/thread/file.c",