-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: Removed GTest::gtest_main from CMakeLists.txt for velox_simple_aggregate_test #11668
build: Removed GTest::gtest_main from CMakeLists.txt for velox_simple_aggregate_test #11668
Conversation
✅ Deploy Preview for meta-velox canceled.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is incidental to your actual change but that test isn't run in CI because ctest doesn't know about it. Could you add an add_test
for it so that it's picked up?
84664ee
to
eece5ba
Compare
eece5ba
to
e2b4375
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
e2b4375
to
bc05309
Compare
…velox_simple_aggregate_test
@xiaoxmeng has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@xiaoxmeng merged this pull request in 4dd6499. |
…_aggregate_test (facebookincubator#11668) Summary: Removed GTest::gtest_main from CMakeLists.txt for velox_simple_aggregate_test. ``` add_executable(velox_simple_aggregate_test SimpleAggregateAdapterTest.cpp Main.cpp) ``` Since Main.cpp is already included here, GTest::gtest_main is not needed in target_link_libraries. Pull Request resolved: facebookincubator#11668 Reviewed By: kagamiori Differential Revision: D66690701 Pulled By: xiaoxmeng fbshipit-source-id: 51c5536de45bfd15abdf7a83f46c95f09846a976
…_aggregate_test (facebookincubator#11668) Summary: Removed GTest::gtest_main from CMakeLists.txt for velox_simple_aggregate_test. ``` add_executable(velox_simple_aggregate_test SimpleAggregateAdapterTest.cpp Main.cpp) ``` Since Main.cpp is already included here, GTest::gtest_main is not needed in target_link_libraries. Pull Request resolved: facebookincubator#11668 Reviewed By: kagamiori Differential Revision: D66690701 Pulled By: xiaoxmeng fbshipit-source-id: 51c5536de45bfd15abdf7a83f46c95f09846a976
Removed GTest::gtest_main from CMakeLists.txt for velox_simple_aggregate_test.
Since Main.cpp is already included here, GTest::gtest_main is not needed in target_link_libraries.