Skip to content

Commit 5bc208f

Browse files
Krishna Paifacebook-github-bot
Krishna Pai
authored andcommitted
Revert GlobalConfig to use gflags again (#147)
Summary: X-link: facebookincubator/velox#12503 Pull Request resolved: #147 Reverts the use of GlobalConfig and switches back to using gflags. Unfortunately using globalConfig requires us to call translateFlagsToGlobalConfig immediately after ParseCommandLineFlags to initialize it right. Because other libraries also use velox , transitively there are many such places. Thus reverting this change till we figure out a better mechanism to remove gflags dependencies. Reviewed By: amitkdutta Differential Revision: D70463150 fbshipit-source-id: 7bbd33818666c1f4235ef2e33496fa5cd8cf6a6e
1 parent fe4efb0 commit 5bc208f

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

dwio/nimble/common/tests/VectorTests.cpp

+14-7
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,22 @@
1717
#include "dwio/nimble/common/Vector.h"
1818
#include "velox/common/memory/Memory.h"
1919

20+
DECLARE_bool(velox_enable_memory_usage_track_in_default_memory_pool);
21+
2022
using namespace ::facebook;
2123

22-
TEST(VectorTests, InitializerList) {
23-
auto pool = velox::memory::deprecatedAddDefaultLeafMemoryPool();
24-
nimble::Vector<int32_t> v1(pool.get(), {3, 4});
25-
EXPECT_EQ(2, v1.size());
26-
EXPECT_EQ(3, v1[0]);
27-
EXPECT_EQ(4, v1[1]);
28-
}
24+
class VectorTests : public ::testing::Test {
25+
protected:
26+
static void SetUpTestCase() {
27+
FLAGS_velox_enable_memory_usage_track_in_default_memory_pool = true;
28+
}
29+
30+
void SetUp() override {
31+
pool_ = facebook::velox::memory::deprecatedAddDefaultLeafMemoryPool();
32+
}
33+
34+
std::shared_ptr<velox::memory::MemoryPool> pool_;
35+
};
2936

3037
TEST(VectorTests, FromRange) {
3138
auto pool = velox::memory::deprecatedAddDefaultLeafMemoryPool();

0 commit comments

Comments
 (0)