diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2015-04-08 10:19:33 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2015-04-08 14:22:10 -0400 |
commit | 7d0e5fe3dfa39f7ff377a1d4660bc2bc36dc0df8 (patch) | |
tree | ef6b30b3bb354aba7fcd52d5e99156def9eb8f1e /SConstruct | |
parent | 9665c0dc4d512f0e2748229d01cf0700dcc4898f (diff) | |
download | mongo-7d0e5fe3dfa39f7ff377a1d4660bc2bc36dc0df8.tar.gz |
Enable test/fops for Windows, and add to CI
- Added Windows shim for gettimeofday
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/SConstruct b/SConstruct index 8e9fae28ac6..9d9a3918a2e 100644 --- a/SConstruct +++ b/SConstruct @@ -338,11 +338,12 @@ t = env.Program("t_huge", LIBS=[wtlib] + wtlibs) Default(t) -#env.Program("t_fops", - #["test/fops/file.c", - #"test/fops/fops.c", - #"test/fops/t.c"], - #LIBS=[wtlib]) +t = env.Program("t_fops", + ["test/fops/file.c", + "test/fops/fops.c", + "test/fops/t.c"], + LIBS=[wtlib, shim] + wtlibs) +Default(t) if useBdb: benv = env.Clone() |