Skip to content

Commit 9e82bc2

Browse files
authored
GH-49458: [CI][C++] Fix Meson build referencing non-existent fixed_shape_tensor_test.cc (#49468)
## Summary - Fix `meson.build` in `cpp/src/arrow/extension/` referencing `fixed_shape_tensor_test.cc` which does not exist - The test file was renamed to `tensor_extension_array_test.cc` but the Meson build was not updated to match `CMakeLists.txt` 🤖 Generated with [Claude Code](https://claude.com/claude-code) * GitHub Issue: #49458 Authored-by: Will Ayd <william.ayd@icloud.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
1 parent aa1cabe commit 9e82bc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/arrow/extension/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ canonical_extension_tests = ['bool8_test.cc', 'json_test.cc', 'uuid_test.cc']
1919

2020
if needs_json
2121
canonical_extension_tests += [
22-
'fixed_shape_tensor_test.cc',
22+
'tensor_extension_array_test.cc',
2323
'opaque_test.cc',
2424
]
2525
endif

0 commit comments

Comments
 (0)