Skip to content

Commit

Permalink
CI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
abigalekim committed Feb 16, 2024
1 parent ee51025 commit e80e797
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions tiledb/sm/array/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,5 @@ commence(unit_test consistency)
this_target_sources(main.cc unit_consistency.cc)
this_target_link_libraries(TILEDB_CORE_OBJECTS)
this_target_link_libraries(TILEDB_CORE_OBJECTS_ILIB)
this_target_link_libraries(tiledb_test_support_lib)
conclude(unit_test)
5 changes: 3 additions & 2 deletions tiledb/sm/array/test/unit_consistency.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

#include <test/support/tdb_catch.h>
#include <iostream>
#include "test/support/src/mem_helpers.h"

#include "../array.h"
#include "../consistency.h"
Expand Down Expand Up @@ -106,8 +107,8 @@ class WhiteboxConsistencyController : public ConsistencyController {
make_shared<Domain>(HERE(), Layout::ROW_MAJOR, dims, Layout::ROW_MAJOR);

// Create the ArraySchema
shared_ptr<ArraySchema> schema =
make_shared<ArraySchema>(HERE(), ArrayType::DENSE);
shared_ptr<ArraySchema> schema = make_shared<ArraySchema>(
HERE(), tiledb::test::create_test_memory_tracker(), ArrayType::DENSE);
throw_if_not_ok(schema->set_domain(domain));
throw_if_not_ok(schema->add_attribute(
make_shared<Attribute>(
Expand Down
1 change: 1 addition & 0 deletions tiledb/sm/serialization/array_schema.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

#include <unordered_map>

#include "tiledb/common/memory_tracker.h"
#include "tiledb/common/status.h"
#include "tiledb/sm/config/config.h"

Expand Down

0 comments on commit e80e797

Please sign in to comment.