Skip to content

Commit

Permalink
Skip test on 32-bit systems
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Jan 18, 2024
1 parent c1ae591 commit 34d2d41
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cpp/src/arrow/compute/light_array_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,11 @@ TEST(ExecBatchBuilder, AppendValuesBeyondLimit) {
}

TEST(ExecBatchBuilder, AppendVarLengthBeyondLimit) {
// Corresponds to GH-39332.
// GH-39332: check appending variable-length data past 2GB.
if constexpr (sizeof(void*) == 4) {
GTEST_SKIP() << "Test only works on 64-bit platforms";
}

std::unique_ptr<MemoryPool> owned_pool = MemoryPool::CreateDefault();
MemoryPool* pool = owned_pool.get();
constexpr auto eight_mb = 8 * 1024 * 1024;
Expand Down

0 comments on commit 34d2d41

Please sign in to comment.