1# Copyright (c) 2021-2022 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14set(UTIL_SOURCES 15) 16 17set(UTIL_TESTS_SOURCES 18 ${VERIFICATION_SOURCES_DIR}/util/tests/environment.cpp 19 ${VERIFICATION_SOURCES_DIR}/util/tests/equiv_classes_test.cpp 20 ${VERIFICATION_SOURCES_DIR}/util/tests/lazy_test.cpp 21 ${VERIFICATION_SOURCES_DIR}/util/tests/relation_test.cpp 22 ${VERIFICATION_SOURCES_DIR}/util/tests/addr_map_test.cpp 23 ${VERIFICATION_SOURCES_DIR}/util/tests/tagged_index_test.cpp 24 ${VERIFICATION_SOURCES_DIR}/util/tests/flags.cpp 25 ${VERIFICATION_SOURCES_DIR}/util/tests/obj_pool_test.cpp 26 ${VERIFICATION_SOURCES_DIR}/util/tests/enum_array_test.cpp 27 ${VERIFICATION_SOURCES_DIR}/util/tests/index_test.cpp 28 ${VERIFICATION_SOURCES_DIR}/util/tests/abstract_index_test.cpp 29 ${VERIFICATION_SOURCES_DIR}/util/tests/optional_ref_test.cpp 30 ${VERIFICATION_SOURCES_DIR}/util/tests/saturated_enum_test.cpp 31 ${VERIFICATION_SOURCES_DIR}/util/tests/shifted_vector_test.cpp 32 ${VERIFICATION_SOURCES_DIR}/util/tests/str_test.cpp 33 ${VERIFICATION_SOURCES_DIR}/util/tests/struct_field_test.cpp 34 ${VERIFICATION_SOURCES_DIR}/util/tests/callable_test.cpp 35 ${VERIFICATION_SOURCES_DIR}/util/tests/function_traits_test.cpp 36 ${VERIFICATION_SOURCES_DIR}/util/parser/tests/parser_test.cpp 37 ${VERIFICATION_SOURCES_DIR}/util/parser/tests/charset_test.cpp 38 ${VERIFICATION_SOURCES_DIR}/util/tests/enum_tag_test.cpp 39 ${VERIFICATION_SOURCES_DIR}/util/tests/int_tag_test.cpp 40 ${VERIFICATION_SOURCES_DIR}/util/tests/int_set_test.cpp 41) 42 43set(UTIL_RAPIDCHECK_TESTS_SOURCES 44 ${VERIFICATION_SOURCES_DIR}/util/tests/environment.cpp 45 ${VERIFICATION_SOURCES_DIR}/util/tests/bit_vector_property_test.cpp 46 ${VERIFICATION_SOURCES_DIR}/util/tests/set_operations_property_test.cpp 47 ${VERIFICATION_SOURCES_DIR}/util/tests/int_set_property_test.cpp 48 ${VERIFICATION_SOURCES_DIR}/util/tests/tagged_index_property_test.cpp 49) 50