mirror of https://github.com/facebook/rocksdb.git
Make options length longer for sst_dump_test (#6846)
Summary: Under MacOS when running with make -j 8 check, the temporary directory generated was > 100 characters. This caused the tests to do nothing under MacOS. Most of them still reported success for doing nothing, but ReadaheadSize was expecting the test to run. By making the option name longer, the tests will no run successfully (and do something!) Pull Request resolved: https://github.com/facebook/rocksdb/pull/6846 Reviewed By: ajkr Differential Revision: D21576032 fbshipit-source-id: b089cde0d598137b572aa8527cc5459085252af7
This commit is contained in:
parent
ada700b906
commit
0ac0098705
|
@ -22,7 +22,7 @@
|
|||
|
||||
namespace ROCKSDB_NAMESPACE {
|
||||
|
||||
const uint32_t kOptLength = 100;
|
||||
const uint32_t kOptLength = 1024;
|
||||
|
||||
namespace {
|
||||
static std::string MakeKey(int i) {
|
||||
|
|
Loading…
Reference in New Issue