Skip to content

Commit

Permalink
maybe fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot committed Oct 31, 2024
1 parent 4da0fe6 commit e28addc
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ if get_option('tests')
gtest_dep = dependency('gtest_main')
gmock_dep = dependency('gmock')

nanoarrow_tests = ['utils', 'buffer', 'array', 'schema', 'array-stream', 'nanoarrow-hpp']
nanoarrow_tests = ['utils', 'buffer', 'array', 'schema', 'array-stream']

foreach name : nanoarrow_tests
exc = executable(
Expand All @@ -199,6 +199,18 @@ if get_option('tests')
test(name, exc)
endforeach

nanoarrow_hpp_tests = ['array_stream', 'buffer', 'exception', 'unique', 'view']

foreach name : nanoarrow_hpp_tests
exc = executable(
'hpp-' + name + '-test',
sources: 'src/nanoarrow/hpp/' + name.replace('-', '_') + '_test.cc',
include_directories: incdir,
dependencies: [nanoarrow_testing_dep, gtest_dep, gmock_dep],
)
test(name, exc)
endforeach

testing_test = executable('nanoarrow-testing-test',
'src/nanoarrow/testing/testing_test.cc',
include_directories: incdir,
Expand Down

0 comments on commit e28addc

Please sign in to comment.