Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
Add most of the arrow based tests to intel gpu CI flow
Browse files Browse the repository at this point in the history
  • Loading branch information
kurapov-peter committed Jul 4, 2023
1 parent 9d3fcf0 commit c4156b1
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions omniscidb/Tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,19 @@ if(ENABLE_CUDA)
add_test(GpuSharedMemoryTest GpuSharedMemoryTest ${TEST_ARGS})
endif()
if(ENABLE_L0)
add_test(NAME PuntToCpu COMMAND ArrowBasedExecuteTest "--gtest_filter=Select.Punt*" ${TEST_ARGS})
set_tests_properties(PuntToCpu PROPERTIES LABELS "enabling")
add_test(NAME StreamingTopNFallback COMMAND ArrowBasedExecuteTest "--gtest_filter=Select.TopKHeap:Select.TimeInterval:Select.OverflowAndUnderFlow" ${TEST_ARGS})
set_tests_properties(StreamingTopNFallback PROPERTIES LABELS "enabling")
set(arrow_based_execute_skip_tests
Select.DictionaryStringEquality
Select.Case
Select.GroupBy
Select.GroupByBaselineHash
Select.MultiStepColumnarization
Select.Interop
Select.ApproxCountDistinct
)
string(REPLACE ";" ":" filter_line "${arrow_based_execute_skip_tests}")
string(PREPEND filter_line "--gtest_filter=-")
add_test(NAME ArrowBasedExecuteTestIntel COMMAND ArrowBasedExecuteTest ${filter_line} ${TEST_ARGS})
set_tests_properties(ArrowBasedExecuteTestIntel PROPERTIES LABELS "enabling")
endif()

if(NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
Expand Down

0 comments on commit c4156b1

Please sign in to comment.