Skip to content

Commit

Permalink
Disable PrefixIntervalBtree test for btree UTs (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
shosseinimotlagh authored Dec 19, 2023
1 parent 233f217 commit 0154c9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tests/index_btree_benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ INDEX_BETREE_BENCHMARK(FixedLenBtree)
INDEX_BETREE_BENCHMARK(VarKeySizeBtree)
INDEX_BETREE_BENCHMARK(VarValueSizeBtree)
INDEX_BETREE_BENCHMARK(VarObjSizeBtree)
INDEX_BETREE_BENCHMARK(PrefixIntervalBtree)
//INDEX_BETREE_BENCHMARK(PrefixIntervalBtree)

int main(int argc, char** argv) {
SISL_OPTIONS_LOAD(argc, argv, logging, index_btree_benchmark, iomgr, test_common_setup);
Expand Down
3 changes: 2 additions & 1 deletion src/tests/test_mem_btree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ struct BtreeTest : public BtreeTestHelper< TestType >, public ::testing::Test {
}
};

using BtreeTypes = testing::Types< PrefixIntervalBtreeTest, FixedLenBtreeTest, VarKeySizeBtreeTest,
// TODO Enable PrefixIntervalBtreeTest later
using BtreeTypes = testing::Types</* PrefixIntervalBtreeTest, */FixedLenBtreeTest, VarKeySizeBtreeTest,
VarValueSizeBtreeTest, VarObjSizeBtreeTest >;
TYPED_TEST_SUITE(BtreeTest, BtreeTypes);

Expand Down

0 comments on commit 0154c9e

Please sign in to comment.