summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorleveldb Team <no-reply@google.com>2019-12-03 13:15:21 -0800
committerVictor Costan <pwnall@chromium.org>2020-01-09 09:17:59 -0800
commitd152b23f3b787f67a0ac3a40498e13831f3778d7 (patch)
tree1355aa3aa56b9abc890fc001e8f5521ec984b790 /util
parent58a89bbcb28d02d5704c5fff7aeb6e72f7ca2431 (diff)
downloadleveldb-d152b23f3b787f67a0ac3a40498e13831f3778d7.tar.gz
Defend against inclusion of windows.h in tests that invoke
Env::DeleteFile. PiperOrigin-RevId: 283607548
Diffstat (limited to 'util')
-rw-r--r--util/env_test.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/util/env_test.cc b/util/env_test.cc
index b35ba05..09e9d39 100644
--- a/util/env_test.cc
+++ b/util/env_test.cc
@@ -12,6 +12,11 @@
#include "util/mutexlock.h"
#include "util/testutil.h"
+#if defined(_WIN32) && defined(DeleteFile)
+// See rationale in env.h
+#undef DeleteFile
+#endif
+
namespace leveldb {
static const int kDelayMicros = 100000;