Disable backupable_db_test.cc on Windows

Summary: Disable backupable_db_test.cc on Windows since EnvChroot is not supported

Test Plan: check ROCKSDB_LITE

Reviewers: andrewkr

Subscribers: andrewkr, dhruba

Differential Revision: https://reviews.facebook.net/D58035
main
Islam AbdelRahman 9 years ago
parent e61ba052b3
commit c1af07ce84
  1. 4
      utilities/backupable/backupable_db_test.cc

@ -7,7 +7,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.
#ifndef ROCKSDB_LITE
#if !defined(ROCKSDB_LITE) && !defined(OS_WIN)
#include <algorithm>
#include <string>
@ -1385,4 +1385,4 @@ int main(int argc, char** argv) {
return 0;
}
#endif // !ROCKSDB_LITE
#endif // !defined(ROCKSDB_LITE) && !defined(OS_WIN)

Loading…
Cancel
Save