summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorDavid Hows <howsdav@gmail.com>2015-04-30 16:07:57 +1000
committerDavid Hows <howsdav@gmail.com>2015-05-01 12:14:37 +1000
commit4be18dd81c3db6a6d3061d2b6e0825e96f5c37fa (patch)
tree4528e1be80daa38bc19407fe1bd45f7e24fcb2e7 /SConstruct
parent1632d07477680f48731c30a3355cee8be179383e (diff)
downloadmongo-4be18dd81c3db6a6d3061d2b6e0825e96f5c37fa.tar.gz
Add directory_delimiter function
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct10
1 files changed, 2 insertions, 8 deletions
diff --git a/SConstruct b/SConstruct
index eaf1b3da00f..f1f6a48f6cf 100644
--- a/SConstruct
+++ b/SConstruct
@@ -408,18 +408,12 @@ env.Append(BUILDERS={'SmokeTest' : Builder(action = builder_smoke_test)})
#env.Alias("test", env.SmokeTest(t))
#Default(t)
-test_util_lib = env.Library(
- target="libtest_util",
- source=["test/utility/test_util.c"])
-env.Append(CPPPATH=["test/utility"])
-Default(test_util_lib)
-
-
t = env.Program("t_fops",
["test/fops/file.c",
"test/fops/fops.c",
"test/fops/t.c"],
- LIBS=[wtlib, shim, test_util_lib] + wtlibs)
+ LIBS=[wtlib, shim] + wtlibs)
+env.Append(CPPPATH=["test/utility"])
env.Alias("test", env.SmokeTest(t))
Default(t)