|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- include(GoogleTest)
-
- SET(DE_UT_SRCS
- common/common.cc
- common/cvop_common.cc
- common/bboxop_common.cc
- batch_op_test.cc
- bit_functions_test.cc
- storage_container_test.cc
- treap_test.cc
- interrupt_test.cc
- image_folder_op_test.cc
- buddy_test.cc
- bounding_box_augment_op_test.cc
- arena_test.cc
- btree_test.cc
- center_crop_op_test.cc
- channel_swap_test.cc
- circular_pool_test.cc
- client_config_test.cc
- connector_test.cc
- cut_out_op_test.cc
- datatype_test.cc
- decode_op_test.cc
- execution_tree_test.cc
- global_context_test.cc
- main_test.cc
- map_op_test.cc
- mind_record_op_test.cc
- memory_pool_test.cc
- normalize_op_test.cc
- one_hot_op_test.cc
- pad_end_op_test.cc
- pad_op_test.cc
- path_test.cc
- project_op_test.cc
- queue_test.cc
- random_crop_op_test.cc
- random_crop_with_bbox_op_test.cc
- random_crop_decode_resize_op_test.cc
- random_crop_and_resize_op_test.cc
- random_crop_and_resize_with_bbox_op_test.cc
- random_color_adjust_op_test.cc
- random_horizontal_flip_op_test.cc
- random_horizontal_flip_with_bbox_test.cc
- random_resize_op_test.cc
- random_resize_with_bbox_op_test.cc
- random_rotation_op_test.cc
- random_vertical_flip_op_test.cc
- random_vertical_flip_with_bbox_op_test.cc
- rename_op_test.cc
- repeat_op_test.cc
- skip_op_test.cc
- rescale_op_test.cc
- resize_bilinear_op_test.cc
- resize_op_test.cc
- resize_with_bbox_op_test.cc
- schema_test.cc
- shuffle_op_test.cc
- stand_alone_samplers_test.cc
- status_test.cc
- task_manager_test.cc
- tensor_test.cc
- tensor_string_test.cc
- tensorshape_test.cc
- tfReader_op_test.cc
- to_float16_op_test.cc
- type_cast_op_test.cc
- zip_op_test.cc
- random_resize_op_test.cc
- subset_random_sampler_test.cc
- weighted_random_sampler_test.cc
- mnist_op_test.cc
- manifest_op_test.cc
- voc_op_test.cc
- cifar_op_test.cc
- celeba_op_test.cc
- take_op_test.cc
- clue_op_test.cc
- text_file_op_test.cc
- filter_op_test.cc
- concat_op_test.cc
- jieba_tokenizer_op_test.cc
- tokenizer_op_test.cc
- gnn_graph_test.cc
- coco_op_test.cc
- fill_op_test.cc
- mask_test.cc
- trucate_pair_test.cc
- concatenate_op_test.cc
- cyclic_array_test.cc
- perf_data_test.cc
- )
-
- add_executable(de_ut_tests ${DE_UT_SRCS})
-
- set_target_properties(de_ut_tests PROPERTIES INSTALL_RPATH "$ORIGIN/../lib:$ORIGIN/../lib64")
-
- target_link_libraries(de_ut_tests PRIVATE _c_dataengine pybind11::embed ${GTEST_LIBRARY} ${SECUREC_LIBRARY} ${SLOG_LIBRARY})
-
- gtest_discover_tests(de_ut_tests WORKING_DIRECTORY ${Project_DIR}/tests/dataset)
-
- install(TARGETS de_ut_tests
- RUNTIME DESTINATION test)
-
- # For internal testing only.
- install(DIRECTORY ${Project_DIR}/tests/dataset/data/
- DESTINATION test/data)
|