Skip to content
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

【paddle_test No.31、32】replace cc_test with paddle_test #60959

Merged
merged 5 commits into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat(ctest): move ut to test
  • Loading branch information
xiaoyewww committed Feb 5, 2024
commit e7f8dfb13f31da72d1bdc15a7e93bd7cecc2a987
1 change: 1 addition & 0 deletions test/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ add_subdirectory(pir)
add_subdirectory(inference)
add_subdirectory(eager)
add_subdirectory(fluid)
add_subdirectory(utils)
22 changes: 22 additions & 0 deletions test/cpp/utils/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
if(NOT WITH_GFLAGS)
paddle_test(flags_native_test SRCS flags_native_test.cc DEPS paddle_flags)
endif()

paddle_test(
array_ref_test
SRCS
array_ref_test.cc
DEPS
gtest
phi
common)
paddle_test(
small_vector_test
SRCS
small_vector_test.cc
DEPS
gtest
phi
common)
paddle_test(variant_test SRCS variant_test.cc DEPS gtest)
paddle_test(span_test SRCS span_test.cc DEPS gtest)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.