Carl Shapiro | 008e412 | 2011-06-23 17:27:46 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2011 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 17 | # The path for which all the dex files are relative, not actually the current directory. |
| 18 | LOCAL_PATH := art/test |
| 19 | |
| 20 | include art/build/Android.common_test.mk |
| 21 | include art/build/Android.common_path.mk |
| 22 | |
| 23 | # Subdirectories in art/test which contain dex files used as inputs for gtests. |
| 24 | GTEST_DEX_DIRECTORIES := \ |
| 25 | AbstractMethod \ |
| 26 | AllFields \ |
| 27 | ExceptionHandle \ |
| 28 | GetMethodSignature \ |
| 29 | Interfaces \ |
| 30 | Main \ |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 31 | MultiDex \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 32 | MyClass \ |
| 33 | MyClassNatives \ |
| 34 | Nested \ |
| 35 | NonStaticLeafMethods \ |
| 36 | ProtoCompare \ |
| 37 | ProtoCompare2 \ |
| 38 | StaticLeafMethods \ |
| 39 | Statics \ |
| 40 | StaticsFromCode \ |
| 41 | Transaction \ |
| 42 | XandY |
| 43 | |
| 44 | # Create build rules for each dex file recording the dependency. |
| 45 | $(foreach dir,$(GTEST_DEX_DIRECTORIES), $(eval $(call build-art-test-dex,art-gtest,$(dir), \ |
Ian Rogers | 1a2f84e | 2014-07-07 16:05:18 -0700 | [diff] [blame] | 46 | $(ART_TARGET_NATIVETEST_OUT),art/build/Android.gtest.mk,ART_TEST_TARGET_GTEST_$(dir)_DEX, \ |
| 47 | ART_TEST_HOST_GTEST_$(dir)_DEX))) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 48 | |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 49 | # Create rules for MainStripped, a copy of Main with the classes.dex stripped |
| 50 | # for the oat file assistant tests. |
| 51 | ART_TEST_HOST_GTEST_MainStripped_DEX := $(basename $(ART_TEST_HOST_GTEST_Main_DEX))Stripped$(suffix $(ART_TEST_HOST_GTEST_Main_DEX)) |
| 52 | ART_TEST_TARGET_GTEST_MainStripped_DEX := $(basename $(ART_TEST_TARGET_GTEST_Main_DEX))Stripped$(suffix $(ART_TEST_TARGET_GTEST_Main_DEX)) |
| 53 | |
| 54 | $(ART_TEST_HOST_GTEST_MainStripped_DEX): $(ART_TEST_HOST_GTEST_Main_DEX) |
| 55 | cp $< $@ |
| 56 | $(call dexpreopt-remove-classes.dex,$@) |
| 57 | |
| 58 | $(ART_TEST_TARGET_GTEST_MainStripped_DEX): $(ART_TEST_TARGET_GTEST_Main_DEX) |
| 59 | cp $< $@ |
| 60 | $(call dexpreopt-remove-classes.dex,$@) |
| 61 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 62 | # Dex file dependencies for each gtest. |
Andreas Gampe | 81c6f8d | 2015-03-25 17:19:53 -0700 | [diff] [blame] | 63 | ART_GTEST_class_linker_test_DEX_DEPS := Interfaces MultiDex MyClass Nested Statics StaticsFromCode |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 64 | ART_GTEST_compiler_driver_test_DEX_DEPS := AbstractMethod StaticLeafMethods |
Andreas Gampe | da82344 | 2014-11-03 15:36:53 -0800 | [diff] [blame] | 65 | ART_GTEST_dex_file_test_DEX_DEPS := GetMethodSignature Main Nested |
Brian Carlstrom | eb85f2b | 2014-06-25 13:23:00 -0700 | [diff] [blame] | 66 | ART_GTEST_exception_test_DEX_DEPS := ExceptionHandle |
| 67 | ART_GTEST_jni_compiler_test_DEX_DEPS := MyClassNatives |
| 68 | ART_GTEST_jni_internal_test_DEX_DEPS := AllFields StaticLeafMethods |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 69 | ART_GTEST_oat_file_assistant_test_DEX_DEPS := Main MainStripped MultiDex Nested |
Andreas Gampe | 7848da4 | 2015-04-09 11:15:04 -0700 | [diff] [blame] | 70 | ART_GTEST_oat_file_test_DEX_DEPS := Main MultiDex |
Brian Carlstrom | eb85f2b | 2014-06-25 13:23:00 -0700 | [diff] [blame] | 71 | ART_GTEST_object_test_DEX_DEPS := ProtoCompare ProtoCompare2 StaticsFromCode XandY |
| 72 | ART_GTEST_proxy_test_DEX_DEPS := Interfaces |
| 73 | ART_GTEST_reflection_test_DEX_DEPS := Main NonStaticLeafMethods StaticLeafMethods |
| 74 | ART_GTEST_stub_test_DEX_DEPS := AllFields |
| 75 | ART_GTEST_transaction_test_DEX_DEPS := Transaction |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 76 | |
| 77 | # The elf writer test has dependencies on core.oat. |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 78 | ART_GTEST_elf_writer_test_HOST_DEPS := $(HOST_CORE_IMAGE_default_no-pic_64) $(HOST_CORE_IMAGE_default_no-pic_32) |
| 79 | ART_GTEST_elf_writer_test_TARGET_DEPS := $(TARGET_CORE_IMAGE_default_no-pic_64) $(TARGET_CORE_IMAGE_default_no-pic_32) |
Brian Carlstrom | 53463ea | 2014-11-09 14:11:51 -0800 | [diff] [blame] | 80 | |
Richard Uhler | 9a44f87 | 2015-03-12 12:35:43 -0700 | [diff] [blame] | 81 | ART_GTEST_oat_file_assistant_test_HOST_DEPS := \ |
| 82 | $(HOST_CORE_IMAGE_default_no-pic_64) \ |
| 83 | $(HOST_CORE_IMAGE_default_no-pic_32) \ |
| 84 | $(HOST_OUT_EXECUTABLES)/patchoatd |
| 85 | ART_GTEST_oat_file_assistant_test_TARGET_DEPS := \ |
| 86 | $(TARGET_CORE_IMAGE_default_no-pic_64) \ |
| 87 | $(TARGET_CORE_IMAGE_default_no-pic_32) \ |
| 88 | $(TARGET_OUT_EXECUTABLES)/patchoatd |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 89 | |
Brian Carlstrom | 53463ea | 2014-11-09 14:11:51 -0800 | [diff] [blame] | 90 | # TODO: document why this is needed. |
Andreas Gampe | c23c9c9 | 2014-10-28 14:47:25 -0700 | [diff] [blame] | 91 | ART_GTEST_proxy_test_HOST_DEPS := $(HOST_CORE_IMAGE_default_no-pic_64) $(HOST_CORE_IMAGE_default_no-pic_32) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 92 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 93 | # The imgdiag test has dependencies on core.oat since it needs to load it during the test. |
Andreas Gampe | c93b8b5 | 2014-12-19 23:12:25 -0800 | [diff] [blame] | 94 | # For the host, also add the installed tool (in the base size, that should suffice). For the |
| 95 | # target, just the module is fine, the sync will happen late enough. |
| 96 | ART_GTEST_imgdiag_test_HOST_DEPS := \ |
| 97 | $(HOST_CORE_IMAGE_default_no-pic_64) \ |
| 98 | $(HOST_CORE_IMAGE_default_no-pic_32) \ |
| 99 | $(HOST_OUT_EXECUTABLES)/imgdiagd |
| 100 | ART_GTEST_imgdiag_test_TARGET_DEPS := \ |
| 101 | $(TARGET_CORE_IMAGE_default_no-pic_64) \ |
| 102 | $(TARGET_CORE_IMAGE_default_no-pic_32) \ |
| 103 | imgdiagd |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 104 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 105 | # The path for which all the source files are relative, not actually the current directory. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 106 | LOCAL_PATH := art |
| 107 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 108 | RUNTIME_GTEST_COMMON_SRC_FILES := \ |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 109 | cmdline/cmdline_parser_test.cc \ |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 110 | imgdiag/imgdiag_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 111 | runtime/arch/arch_test.cc \ |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 112 | runtime/arch/instruction_set_test.cc \ |
| 113 | runtime/arch/instruction_set_features_test.cc \ |
Serban Constantinescu | 86797a7 | 2014-06-19 16:17:56 +0100 | [diff] [blame] | 114 | runtime/arch/memcmp16_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 115 | runtime/arch/stub_test.cc \ |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 116 | runtime/arch/arm/instruction_set_features_arm_test.cc \ |
| 117 | runtime/arch/arm64/instruction_set_features_arm64_test.cc \ |
| 118 | runtime/arch/mips/instruction_set_features_mips_test.cc \ |
Andreas Gampe | 57b3429 | 2015-01-14 15:45:59 -0800 | [diff] [blame] | 119 | runtime/arch/mips64/instruction_set_features_mips64_test.cc \ |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 120 | runtime/arch/x86/instruction_set_features_x86_test.cc \ |
| 121 | runtime/arch/x86_64/instruction_set_features_x86_64_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 122 | runtime/barrier_test.cc \ |
| 123 | runtime/base/bit_field_test.cc \ |
| 124 | runtime/base/bit_vector_test.cc \ |
Mathieu Chartier | c2e2062 | 2014-11-03 11:41:47 -0800 | [diff] [blame] | 125 | runtime/base/hash_set_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 126 | runtime/base/hex_dump_test.cc \ |
| 127 | runtime/base/histogram_test.cc \ |
| 128 | runtime/base/mutex_test.cc \ |
| 129 | runtime/base/scoped_flock_test.cc \ |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 130 | runtime/base/stringprintf_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 131 | runtime/base/timing_logger_test.cc \ |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 132 | runtime/base/variant_map_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 133 | runtime/base/unix_file/fd_file_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 134 | runtime/class_linker_test.cc \ |
| 135 | runtime/dex_file_test.cc \ |
| 136 | runtime/dex_file_verifier_test.cc \ |
| 137 | runtime/dex_instruction_visitor_test.cc \ |
| 138 | runtime/dex_method_iterator_test.cc \ |
| 139 | runtime/entrypoints/math_entrypoints_test.cc \ |
| 140 | runtime/entrypoints/quick/quick_trampoline_entrypoints_test.cc \ |
| 141 | runtime/entrypoints_order_test.cc \ |
| 142 | runtime/exception_test.cc \ |
Mathieu Chartier | 2c26501 | 2014-08-05 18:15:56 -0700 | [diff] [blame] | 143 | runtime/gc/accounting/card_table_test.cc \ |
Mathieu Chartier | 4858a93 | 2015-01-23 13:18:53 -0800 | [diff] [blame] | 144 | runtime/gc/accounting/mod_union_table_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 145 | runtime/gc/accounting/space_bitmap_test.cc \ |
| 146 | runtime/gc/heap_test.cc \ |
Mathieu Chartier | 9e2094f | 2014-12-11 18:43:48 -0800 | [diff] [blame] | 147 | runtime/gc/reference_queue_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 148 | runtime/gc/space/dlmalloc_space_base_test.cc \ |
| 149 | runtime/gc/space/dlmalloc_space_static_test.cc \ |
| 150 | runtime/gc/space/dlmalloc_space_random_test.cc \ |
| 151 | runtime/gc/space/rosalloc_space_base_test.cc \ |
| 152 | runtime/gc/space/rosalloc_space_static_test.cc \ |
| 153 | runtime/gc/space/rosalloc_space_random_test.cc \ |
| 154 | runtime/gc/space/large_object_space_test.cc \ |
Mathieu Chartier | a5eae69 | 2014-12-17 17:56:03 -0800 | [diff] [blame] | 155 | runtime/gc/task_processor_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 156 | runtime/gtest_test.cc \ |
| 157 | runtime/handle_scope_test.cc \ |
| 158 | runtime/indenter_test.cc \ |
| 159 | runtime/indirect_reference_table_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 160 | runtime/intern_table_test.cc \ |
Ian Rogers | 5ac814a | 2014-11-04 16:39:32 -0800 | [diff] [blame] | 161 | runtime/interpreter/safe_math_test.cc \ |
Ian Rogers | f4d4da1 | 2014-11-11 16:10:33 -0800 | [diff] [blame] | 162 | runtime/java_vm_ext_test.cc \ |
Mathieu Chartier | bce416f | 2015-03-23 12:37:35 -0700 | [diff] [blame] | 163 | runtime/jit/jit_code_cache_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 164 | runtime/leb128_test.cc \ |
| 165 | runtime/mem_map_test.cc \ |
Roland Levillain | a2d8ec6 | 2015-03-12 15:25:29 +0000 | [diff] [blame] | 166 | runtime/memory_region_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 167 | runtime/mirror/dex_cache_test.cc \ |
| 168 | runtime/mirror/object_test.cc \ |
Andreas Gampe | 7424081 | 2014-04-17 10:35:09 -0700 | [diff] [blame] | 169 | runtime/monitor_pool_test.cc \ |
Elena Sayapina | 1af6a1f | 2014-06-20 16:58:37 +0700 | [diff] [blame] | 170 | runtime/monitor_test.cc \ |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 171 | runtime/oat_file_test.cc \ |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 172 | runtime/oat_file_assistant_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 173 | runtime/parsed_options_test.cc \ |
David Srbecky | 3e52aa4 | 2015-04-12 07:45:18 +0100 | [diff] [blame] | 174 | runtime/prebuilt_tools_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 175 | runtime/reference_table_test.cc \ |
| 176 | runtime/thread_pool_test.cc \ |
| 177 | runtime/transaction_test.cc \ |
Narayan Kamath | a5afcfc | 2015-01-29 20:06:46 +0000 | [diff] [blame] | 178 | runtime/utf_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 179 | runtime/utils_test.cc \ |
| 180 | runtime/verifier/method_verifier_test.cc \ |
| 181 | runtime/verifier/reg_type_test.cc \ |
| 182 | runtime/zip_archive_test.cc |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 183 | |
| 184 | COMPILER_GTEST_COMMON_SRC_FILES := \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 185 | runtime/jni_internal_test.cc \ |
Jeff Hao | db8a664 | 2014-08-14 17:18:52 -0700 | [diff] [blame] | 186 | runtime/proxy_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 187 | runtime/reflection_test.cc \ |
Vladimir Marko | 7a01dc2 | 2015-01-02 17:00:44 +0000 | [diff] [blame] | 188 | compiler/dex/gvn_dead_code_elimination_test.cc \ |
Vladimir Marko | 95a0597 | 2014-05-30 10:01:32 +0100 | [diff] [blame] | 189 | compiler/dex/global_value_numbering_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 190 | compiler/dex/local_value_numbering_test.cc \ |
Vladimir Marko | 55fff04 | 2014-07-10 12:42:52 +0100 | [diff] [blame] | 191 | compiler/dex/mir_graph_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 192 | compiler/dex/mir_optimization_test.cc \ |
David Srbecky | 1109fb3 | 2015-04-07 20:21:06 +0100 | [diff] [blame] | 193 | compiler/dex/quick/quick_cfi_test.cc \ |
Vladimir Marko | c91df2d | 2015-04-23 09:29:21 +0000 | [diff] [blame^] | 194 | compiler/dex/type_inference_test.cc \ |
David Srbecky | 15c1975 | 2015-03-31 14:53:55 +0000 | [diff] [blame] | 195 | compiler/dwarf/dwarf_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 196 | compiler/driver/compiler_driver_test.cc \ |
| 197 | compiler/elf_writer_test.cc \ |
| 198 | compiler/image_test.cc \ |
David Srbecky | dd97393 | 2015-04-07 20:29:48 +0100 | [diff] [blame] | 199 | compiler/jni/jni_cfi_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 200 | compiler/jni/jni_compiler_test.cc \ |
Vladimir Marko | 3f311cf | 2015-04-02 15:28:45 +0100 | [diff] [blame] | 201 | compiler/linker/arm64/relative_patcher_arm64_test.cc \ |
Vladimir Marko | 4d23c9d | 2015-04-01 23:03:09 +0100 | [diff] [blame] | 202 | compiler/linker/arm/relative_patcher_thumb2_test.cc \ |
Vladimir Marko | b163bb7 | 2015-03-31 21:49:49 +0100 | [diff] [blame] | 203 | compiler/linker/x86/relative_patcher_x86_test.cc \ |
| 204 | compiler/linker/x86_64/relative_patcher_x86_64_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 205 | compiler/oat_test.cc \ |
Mingyao Yang | f384f88 | 2014-10-22 16:08:18 -0700 | [diff] [blame] | 206 | compiler/optimizing/bounds_check_elimination_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 207 | compiler/optimizing/codegen_test.cc \ |
Roland Levillain | 72bceff | 2014-09-15 18:29:00 +0100 | [diff] [blame] | 208 | compiler/optimizing/dead_code_elimination_test.cc \ |
Roland Levillain | 75be283 | 2014-10-17 17:02:00 +0100 | [diff] [blame] | 209 | compiler/optimizing/constant_folding_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 210 | compiler/optimizing/dominator_test.cc \ |
| 211 | compiler/optimizing/find_loops_test.cc \ |
Roland Levillain | ccc07a9 | 2014-09-16 14:48:16 +0100 | [diff] [blame] | 212 | compiler/optimizing/graph_checker_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 213 | compiler/optimizing/graph_test.cc \ |
Nicolas Geoffray | d31cf3d | 2014-09-08 17:30:24 +0100 | [diff] [blame] | 214 | compiler/optimizing/gvn_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 215 | compiler/optimizing/linearize_test.cc \ |
| 216 | compiler/optimizing/liveness_test.cc \ |
| 217 | compiler/optimizing/live_interval_test.cc \ |
| 218 | compiler/optimizing/live_ranges_test.cc \ |
Nicolas Geoffray | 724c963 | 2014-09-22 12:27:27 +0100 | [diff] [blame] | 219 | compiler/optimizing/nodes_test.cc \ |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 220 | compiler/optimizing/optimizing_cfi_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 221 | compiler/optimizing/parallel_move_test.cc \ |
| 222 | compiler/optimizing/pretty_printer_test.cc \ |
| 223 | compiler/optimizing/register_allocator_test.cc \ |
| 224 | compiler/optimizing/ssa_test.cc \ |
Nicolas Geoffray | 99ea58c | 2014-07-02 15:08:17 +0100 | [diff] [blame] | 225 | compiler/optimizing/stack_map_test.cc \ |
Nicolas Geoffray | fbc695f | 2014-09-15 15:33:30 +0000 | [diff] [blame] | 226 | compiler/optimizing/suspend_check_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 227 | compiler/output_stream_test.cc \ |
| 228 | compiler/utils/arena_allocator_test.cc \ |
| 229 | compiler/utils/dedupe_set_test.cc \ |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 230 | compiler/utils/swap_space_test.cc \ |
Vladimir Marko | c91df2d | 2015-04-23 09:29:21 +0000 | [diff] [blame^] | 231 | compiler/utils/test_dex_file_builder_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 232 | compiler/utils/arm/managed_register_arm_test.cc \ |
| 233 | compiler/utils/arm64/managed_register_arm64_test.cc \ |
| 234 | compiler/utils/x86/managed_register_x86_test.cc \ |
Brian Carlstrom | 51c2467 | 2013-07-11 16:00:56 -0700 | [diff] [blame] | 235 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 236 | RUNTIME_GTEST_TARGET_SRC_FILES := \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 237 | $(RUNTIME_GTEST_COMMON_SRC_FILES) |
Brian Carlstrom | 51c2467 | 2013-07-11 16:00:56 -0700 | [diff] [blame] | 238 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 239 | RUNTIME_GTEST_HOST_SRC_FILES := \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 240 | $(RUNTIME_GTEST_COMMON_SRC_FILES) |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 241 | |
| 242 | COMPILER_GTEST_TARGET_SRC_FILES := \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 243 | $(COMPILER_GTEST_COMMON_SRC_FILES) |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 244 | |
| 245 | COMPILER_GTEST_HOST_SRC_FILES := \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 246 | $(COMPILER_GTEST_COMMON_SRC_FILES) \ |
Roland Levillain | 1a28fc4 | 2014-11-13 18:03:06 +0000 | [diff] [blame] | 247 | compiler/utils/arm/assembler_arm32_test.cc \ |
| 248 | compiler/utils/arm/assembler_thumb2_test.cc \ |
| 249 | compiler/utils/assembler_thumb_test.cc \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 250 | compiler/utils/x86/assembler_x86_test.cc \ |
| 251 | compiler/utils/x86_64/assembler_x86_64_test.cc |
Brian Carlstrom | 8ecd08c | 2011-07-27 17:50:51 -0700 | [diff] [blame] | 252 | |
Shih-wei Liao | c4c9881 | 2012-03-10 21:55:51 -0800 | [diff] [blame] | 253 | ART_TEST_CFLAGS := |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 254 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 255 | include $(CLEAR_VARS) |
| 256 | LOCAL_MODULE := libart-gtest |
| 257 | LOCAL_MODULE_TAGS := optional |
| 258 | LOCAL_CPP_EXTENSION := cc |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 259 | LOCAL_SRC_FILES := runtime/common_runtime_test.cc compiler/common_compiler_test.cc |
| 260 | LOCAL_C_INCLUDES := $(ART_C_INCLUDES) art/runtime art/compiler |
Ian Rogers | 872dd82 | 2014-10-30 11:19:14 -0700 | [diff] [blame] | 261 | LOCAL_SHARED_LIBRARIES := libartd libartd-compiler libdl |
Dan Albert | fd84f66 | 2014-11-11 18:53:41 -0800 | [diff] [blame] | 262 | LOCAL_STATIC_LIBRARIES += libgtest |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 263 | LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common_build.mk |
| 264 | LOCAL_ADDITIONAL_DEPENDENCIES += art/build/Android.gtest.mk |
Andreas Gampe | bced67d | 2015-01-07 14:35:44 -0800 | [diff] [blame] | 265 | $(eval $(call set-target-local-clang-vars)) |
| 266 | $(eval $(call set-target-local-cflags-vars,debug)) |
Andreas Gampe | 9b14dc3 | 2015-04-06 15:35:02 -0700 | [diff] [blame] | 267 | LOCAL_CLANG_CFLAGS += -Wno-used-but-marked-unused -Wno-deprecated -Wno-missing-noreturn # gtest issue |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 268 | include $(BUILD_SHARED_LIBRARY) |
| 269 | |
| 270 | include $(CLEAR_VARS) |
| 271 | LOCAL_MODULE := libart-gtest |
| 272 | LOCAL_MODULE_TAGS := optional |
| 273 | LOCAL_CPP_EXTENSION := cc |
| 274 | LOCAL_CFLAGS := $(ART_HOST_CFLAGS) |
| 275 | LOCAL_SRC_FILES := runtime/common_runtime_test.cc compiler/common_compiler_test.cc |
| 276 | LOCAL_C_INCLUDES := $(ART_C_INCLUDES) art/runtime art/compiler |
| 277 | LOCAL_SHARED_LIBRARIES := libartd libartd-compiler |
Nicolas Geoffray | 10fc34b | 2014-11-10 21:38:15 +0000 | [diff] [blame] | 278 | LOCAL_STATIC_LIBRARIES := libgtest_host |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 279 | LOCAL_LDLIBS += -ldl -lpthread |
| 280 | LOCAL_MULTILIB := both |
| 281 | LOCAL_CLANG := $(ART_HOST_CLANG) |
Andreas Gampe | 9b14dc3 | 2015-04-06 15:35:02 -0700 | [diff] [blame] | 282 | LOCAL_CLANG_CFLAGS += -Wno-used-but-marked-unused -Wno-deprecated -Wno-missing-noreturn # gtest issue |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 283 | LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common_build.mk |
| 284 | LOCAL_ADDITIONAL_DEPENDENCIES += art/build/Android.gtest.mk |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 285 | include $(BUILD_HOST_SHARED_LIBRARY) |
| 286 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 287 | # Variables holding collections of gtest pre-requisits used to run a number of gtests. |
| 288 | ART_TEST_HOST_GTEST$(ART_PHONY_TEST_HOST_SUFFIX)_RULES := |
| 289 | ART_TEST_HOST_GTEST$(2ND_ART_PHONY_TEST_HOST_SUFFIX)_RULES := |
| 290 | ART_TEST_HOST_GTEST_RULES := |
| 291 | ART_TEST_HOST_VALGRIND_GTEST$(ART_PHONY_TEST_HOST_SUFFIX)_RULES := |
| 292 | ART_TEST_HOST_VALGRIND_GTEST$(2ND_ART_PHONY_TEST_HOST_SUFFIX)_RULES := |
| 293 | ART_TEST_HOST_VALGRIND_GTEST_RULES := |
| 294 | ART_TEST_TARGET_GTEST$(ART_PHONY_TEST_TARGET_SUFFIX)_RULES := |
| 295 | ART_TEST_TARGET_GTEST$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)_RULES := |
| 296 | ART_TEST_TARGET_GTEST_RULES := |
Andreas Gampe | afbaa1a | 2014-03-25 18:09:32 -0700 | [diff] [blame] | 297 | |
Nicolas Geoffray | 96a37c8 | 2014-10-29 23:50:40 +0000 | [diff] [blame] | 298 | ART_GTEST_TARGET_ANDROID_ROOT := '/system' |
| 299 | ifneq ($(ART_TEST_ANDROID_ROOT),) |
| 300 | ART_GTEST_TARGET_ANDROID_ROOT := $(ART_TEST_ANDROID_ROOT) |
| 301 | endif |
| 302 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 303 | # Define a make rule for a target device gtest. |
| 304 | # $(1): gtest name - the name of the test we're building such as leb128_test. |
| 305 | # $(2): 2ND_ or undefined - used to differentiate between the primary and secondary architecture. |
Nicolas Geoffray | 9eb4074 | 2014-10-29 22:38:53 +0000 | [diff] [blame] | 306 | # $(3): LD_LIBRARY_PATH or undefined - used in case libartd.so is not in /system/lib/ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 307 | define define-art-gtest-rule-target |
| 308 | gtest_rule := test-art-target-gtest-$(1)$$($(2)ART_PHONY_TEST_TARGET_SUFFIX) |
Andreas Gampe | afbaa1a | 2014-03-25 18:09:32 -0700 | [diff] [blame] | 309 | |
Brian Carlstrom | 532714a | 2014-06-25 02:15:31 -0700 | [diff] [blame] | 310 | # Add the test dependencies to test-art-target-sync, which will be a prerequisite for the test |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 311 | # to ensure files are pushed to the device. |
| 312 | TEST_ART_TARGET_SYNC_DEPS += \ |
Brian Carlstrom | eb85f2b | 2014-06-25 13:23:00 -0700 | [diff] [blame] | 313 | $$(ART_GTEST_$(1)_TARGET_DEPS) \ |
Ian Rogers | 1a2f84e | 2014-07-07 16:05:18 -0700 | [diff] [blame] | 314 | $(foreach file,$(ART_GTEST_$(1)_DEX_DEPS),$(ART_TEST_TARGET_GTEST_$(file)_DEX)) \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 315 | $$(ART_TARGET_NATIVETEST_OUT)/$$(TARGET_$(2)ARCH)/$(1) \ |
Nicolas Geoffray | 96a6345 | 2014-10-30 12:13:17 +0000 | [diff] [blame] | 316 | $$($(2)TARGET_OUT_SHARED_LIBRARIES)/libjavacore.so \ |
| 317 | $$(TARGET_OUT_JAVA_LIBRARIES)/core-libart.jar |
Andreas Gampe | afbaa1a | 2014-03-25 18:09:32 -0700 | [diff] [blame] | 318 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 319 | .PHONY: $$(gtest_rule) |
| 320 | $$(gtest_rule): test-art-target-sync |
| 321 | $(hide) adb shell touch $(ART_TARGET_TEST_DIR)/$(TARGET_$(2)ARCH)/$$@-$$$$PPID |
| 322 | $(hide) adb shell rm $(ART_TARGET_TEST_DIR)/$(TARGET_$(2)ARCH)/$$@-$$$$PPID |
| 323 | $(hide) adb shell chmod 755 $(ART_TARGET_NATIVETEST_DIR)/$(TARGET_$(2)ARCH)/$(1) |
| 324 | $(hide) $$(call ART_TEST_SKIP,$$@) && \ |
Dan Albert | 31fb260 | 2014-09-30 22:10:10 -0700 | [diff] [blame] | 325 | (adb shell "$(GCOV_ENV) LD_LIBRARY_PATH=$(3) ANDROID_ROOT=$(ART_GTEST_TARGET_ANDROID_ROOT) \ |
Nicolas Geoffray | 9eb4074 | 2014-10-29 22:38:53 +0000 | [diff] [blame] | 326 | $(ART_TARGET_NATIVETEST_DIR)/$(TARGET_$(2)ARCH)/$(1) && touch $(ART_TARGET_TEST_DIR)/$(TARGET_$(2)ARCH)/$$@-$$$$PPID" \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 327 | && (adb pull $(ART_TARGET_TEST_DIR)/$(TARGET_$(2)ARCH)/$$@-$$$$PPID /tmp/ \ |
| 328 | && $$(call ART_TEST_PASSED,$$@)) \ |
| 329 | || $$(call ART_TEST_FAILED,$$@)) |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 330 | $(hide) rm -f /tmp/$$@-$$$$PPID |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 331 | |
| 332 | ART_TEST_TARGET_GTEST$($(2)ART_PHONY_TEST_TARGET_SUFFIX)_RULES += $$(gtest_rule) |
| 333 | ART_TEST_TARGET_GTEST_RULES += $$(gtest_rule) |
| 334 | ART_TEST_TARGET_GTEST_$(1)_RULES += $$(gtest_rule) |
| 335 | |
| 336 | # Clear locally defined variables. |
| 337 | gtest_rule := |
| 338 | endef # define-art-gtest-rule-target |
| 339 | |
Andreas Gampe | 3c0bb31 | 2015-02-19 10:02:19 -0800 | [diff] [blame] | 340 | ART_VALGRIND_DEPENDENCIES := \ |
| 341 | $(HOST_OUT_EXECUTABLES)/valgrind \ |
| 342 | $(HOST_OUT)/lib64/valgrind/memcheck-amd64-linux \ |
| 343 | $(HOST_OUT)/lib64/valgrind/memcheck-x86-linux \ |
| 344 | $(HOST_OUT)/lib64/valgrind/default.supp \ |
| 345 | $(HOST_OUT)/lib64/valgrind/vgpreload_core-amd64-linux.so \ |
| 346 | $(HOST_OUT)/lib64/valgrind/vgpreload_core-x86-linux.so \ |
| 347 | $(HOST_OUT)/lib64/valgrind/vgpreload_memcheck-amd64-linux.so \ |
| 348 | $(HOST_OUT)/lib64/valgrind/vgpreload_memcheck-x86-linux.so |
| 349 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 350 | # Define make rules for a host gtests. |
| 351 | # $(1): gtest name - the name of the test we're building such as leb128_test. |
| 352 | # $(2): 2ND_ or undefined - used to differentiate between the primary and secondary architecture. |
| 353 | define define-art-gtest-rule-host |
| 354 | gtest_rule := test-art-host-gtest-$(1)$$($(2)ART_PHONY_TEST_HOST_SUFFIX) |
| 355 | gtest_exe := $$(HOST_OUT_EXECUTABLES)/$(1)$$($(2)ART_PHONY_TEST_HOST_SUFFIX) |
Ian Rogers | 665de8a | 2014-06-24 21:34:09 -0700 | [diff] [blame] | 356 | # Dependencies for all host gtests. |
| 357 | gtest_deps := $$(HOST_CORE_DEX_LOCATIONS) \ |
Nicolas Geoffray | 4d1231d | 2014-07-01 10:46:31 +0100 | [diff] [blame] | 358 | $$($(2)ART_HOST_OUT_SHARED_LIBRARIES)/libjavacore$$(ART_HOST_SHLIB_EXTENSION) |
Ian Rogers | 665de8a | 2014-06-24 21:34:09 -0700 | [diff] [blame] | 359 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 360 | |
| 361 | .PHONY: $$(gtest_rule) |
Ian Rogers | 1a2f84e | 2014-07-07 16:05:18 -0700 | [diff] [blame] | 362 | $$(gtest_rule): $$(gtest_exe) $$(ART_GTEST_$(1)_HOST_DEPS) $(foreach file,$(ART_GTEST_$(1)_DEX_DEPS),$(ART_TEST_HOST_GTEST_$(file)_DEX)) $$(gtest_deps) |
Dmitriy Ivanov | 8508a43 | 2014-10-14 11:38:46 -0700 | [diff] [blame] | 363 | $(hide) ($$(call ART_TEST_SKIP,$$@) && $$< && $$(call ART_TEST_PASSED,$$@)) \ |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 364 | || $$(call ART_TEST_FAILED,$$@) |
| 365 | |
| 366 | ART_TEST_HOST_GTEST$$($(2)ART_PHONY_TEST_HOST_SUFFIX)_RULES += $$(gtest_rule) |
| 367 | ART_TEST_HOST_GTEST_RULES += $$(gtest_rule) |
| 368 | ART_TEST_HOST_GTEST_$(1)_RULES += $$(gtest_rule) |
| 369 | |
Andreas Gampe | 3c0bb31 | 2015-02-19 10:02:19 -0800 | [diff] [blame] | 370 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 371 | .PHONY: valgrind-$$(gtest_rule) |
Andreas Gampe | 3c0bb31 | 2015-02-19 10:02:19 -0800 | [diff] [blame] | 372 | valgrind-$$(gtest_rule): $$(gtest_exe) $$(ART_GTEST_$(1)_HOST_DEPS) $(foreach file,$(ART_GTEST_$(1)_DEX_DEPS),$(ART_TEST_HOST_GTEST_$(file)_DEX)) $$(gtest_deps) $(ART_VALGRIND_DEPENDENCIES) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 373 | $(hide) $$(call ART_TEST_SKIP,$$@) && \ |
Andreas Gampe | 8df91ac | 2015-02-20 13:15:15 -0800 | [diff] [blame] | 374 | VALGRIND_LIB=$(HOST_OUT)/lib64/valgrind \ |
Andreas Gampe | 3c0bb31 | 2015-02-19 10:02:19 -0800 | [diff] [blame] | 375 | $(HOST_OUT_EXECUTABLES)/valgrind --leak-check=full --error-exitcode=1 $$< && \ |
| 376 | $$(call ART_TEST_PASSED,$$@) || $$(call ART_TEST_FAILED,$$@) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 377 | |
| 378 | ART_TEST_HOST_VALGRIND_GTEST$$($(2)ART_PHONY_TEST_HOST_SUFFIX)_RULES += valgrind-$$(gtest_rule) |
| 379 | ART_TEST_HOST_VALGRIND_GTEST_RULES += valgrind-$$(gtest_rule) |
| 380 | ART_TEST_HOST_VALGRIND_GTEST_$(1)_RULES += valgrind-$$(gtest_rule) |
| 381 | |
| 382 | # Clear locally defined variables. |
| 383 | valgrind_gtest_rule := |
| 384 | gtest_rule := |
| 385 | gtest_exe := |
Ian Rogers | 665de8a | 2014-06-24 21:34:09 -0700 | [diff] [blame] | 386 | gtest_deps := |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 387 | endef # define-art-gtest-rule-host |
| 388 | |
| 389 | # Define the rules to build and run host and target gtests. |
Brian Carlstrom | 07d579f | 2011-07-27 13:31:51 -0700 | [diff] [blame] | 390 | # $(1): target or host |
Brian Carlstrom | 0796af0 | 2011-10-12 14:31:45 -0700 | [diff] [blame] | 391 | # $(2): file name |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 392 | # $(3): extra C includes |
| 393 | # $(4): extra shared libraries |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 394 | define define-art-gtest |
Brian Carlstrom | 0796af0 | 2011-10-12 14:31:45 -0700 | [diff] [blame] | 395 | ifneq ($(1),target) |
| 396 | ifneq ($(1),host) |
| 397 | $$(error expected target or host for argument 1, received $(1)) |
| 398 | endif |
| 399 | endif |
| 400 | |
| 401 | art_target_or_host := $(1) |
| 402 | art_gtest_filename := $(2) |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 403 | art_gtest_extra_c_includes := $(3) |
| 404 | art_gtest_extra_shared_libraries := $(4) |
Brian Carlstrom | 0796af0 | 2011-10-12 14:31:45 -0700 | [diff] [blame] | 405 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 406 | include $$(CLEAR_VARS) |
Brian Carlstrom | 47a0d5a | 2011-10-12 21:20:05 -0700 | [diff] [blame] | 407 | art_gtest_name := $$(notdir $$(basename $$(art_gtest_filename))) |
Brian Carlstrom | 47a0d5a | 2011-10-12 21:20:05 -0700 | [diff] [blame] | 408 | LOCAL_MODULE := $$(art_gtest_name) |
Brian Carlstrom | 871599a | 2012-09-06 13:27:49 -0700 | [diff] [blame] | 409 | ifeq ($$(art_target_or_host),target) |
| 410 | LOCAL_MODULE_TAGS := tests |
| 411 | endif |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 412 | LOCAL_CPP_EXTENSION := $$(ART_CPP_EXTENSION) |
Dmitriy Ivanov | e49a4f6 | 2014-10-20 14:11:00 -0700 | [diff] [blame] | 413 | LOCAL_SRC_FILES := $$(art_gtest_filename) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 414 | LOCAL_C_INCLUDES += $$(ART_C_INCLUDES) art/runtime $$(art_gtest_extra_c_includes) |
David Srbecky | 1109fb3 | 2015-04-07 20:21:06 +0100 | [diff] [blame] | 415 | LOCAL_SHARED_LIBRARIES += libartd $$(art_gtest_extra_shared_libraries) libart-gtest libart-disassembler |
Dmitriy Ivanov | e49a4f6 | 2014-10-20 14:11:00 -0700 | [diff] [blame] | 416 | LOCAL_WHOLE_STATIC_LIBRARIES += libsigchain |
Brian Carlstrom | 4478eb0 | 2013-07-14 21:05:57 -0700 | [diff] [blame] | 417 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 418 | LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common_build.mk |
| 419 | LOCAL_ADDITIONAL_DEPENDENCIES += art/build/Android.gtest.mk |
Brian Carlstrom | b9cc1ca | 2012-01-27 00:57:42 -0800 | [diff] [blame] | 420 | |
Elliott Hughes | 0f09676 | 2012-01-31 10:32:46 -0800 | [diff] [blame] | 421 | # Mac OS linker doesn't understand --export-dynamic. |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 422 | ifneq ($$(HOST_OS)-$$(art_target_or_host),darwin-host) |
Elliott Hughes | b264f08 | 2012-04-06 17:10:10 -0700 | [diff] [blame] | 423 | # Allow jni_compiler_test to find Java_MyClassNatives_bar within itself using dlopen(NULL, ...). |
| 424 | LOCAL_LDFLAGS := -Wl,--export-dynamic -Wl,-u,Java_MyClassNatives_bar -Wl,-u,Java_MyClassNatives_sbar |
Brian Carlstrom | cfede66 | 2012-01-29 17:25:54 -0800 | [diff] [blame] | 425 | endif |
Brian Carlstrom | 0796af0 | 2011-10-12 14:31:45 -0700 | [diff] [blame] | 426 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 427 | LOCAL_CFLAGS := $$(ART_TEST_CFLAGS) |
Brian Carlstrom | 0796af0 | 2011-10-12 14:31:45 -0700 | [diff] [blame] | 428 | ifeq ($$(art_target_or_host),target) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 429 | $$(eval $$(call set-target-local-clang-vars)) |
| 430 | $$(eval $$(call set-target-local-cflags-vars,debug)) |
Serban Constantinescu | 32f5b4d | 2014-11-25 20:05:46 +0000 | [diff] [blame] | 431 | LOCAL_SHARED_LIBRARIES += libdl libicuuc libicui18n libnativehelper libz libcutils libvixld |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 432 | LOCAL_MODULE_PATH_32 := $$(ART_TARGET_NATIVETEST_OUT)/$$(ART_TARGET_ARCH_32) |
| 433 | LOCAL_MODULE_PATH_64 := $$(ART_TARGET_NATIVETEST_OUT)/$$(ART_TARGET_ARCH_64) |
Andreas Gampe | afbaa1a | 2014-03-25 18:09:32 -0700 | [diff] [blame] | 434 | LOCAL_MULTILIB := both |
Andreas Gampe | 9b14dc3 | 2015-04-06 15:35:02 -0700 | [diff] [blame] | 435 | LOCAL_CLANG_CFLAGS += -Wno-used-but-marked-unused -Wno-deprecated -Wno-missing-noreturn # gtest issue |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 436 | include $$(BUILD_EXECUTABLE) |
Nicolas Geoffray | 9eb4074 | 2014-10-29 22:38:53 +0000 | [diff] [blame] | 437 | library_path := |
| 438 | 2nd_library_path := |
| 439 | ifneq ($$(ART_TEST_ANDROID_ROOT),) |
| 440 | ifdef TARGET_2ND_ARCH |
| 441 | 2nd_library_path := $$(ART_TEST_ANDROID_ROOT)/lib |
| 442 | library_path := $$(ART_TEST_ANDROID_ROOT)/lib64 |
| 443 | else |
Nicolas Geoffray | c1dea4a | 2014-11-10 08:33:52 +0000 | [diff] [blame] | 444 | ifneq ($(filter %64,$(TARGET_ARCH)),) |
| 445 | library_path := $$(ART_TEST_ANDROID_ROOT)/lib64 |
| 446 | else |
| 447 | library_path := $$(ART_TEST_ANDROID_ROOT)/lib |
| 448 | endif |
Nicolas Geoffray | 9eb4074 | 2014-10-29 22:38:53 +0000 | [diff] [blame] | 449 | endif |
| 450 | endif |
Andreas Gampe | 5ca4eaa | 2014-05-29 02:09:33 -0700 | [diff] [blame] | 451 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 452 | ART_TEST_TARGET_GTEST_$$(art_gtest_name)_RULES := |
Andreas Gampe | afbaa1a | 2014-03-25 18:09:32 -0700 | [diff] [blame] | 453 | ifdef TARGET_2ND_ARCH |
Nicolas Geoffray | 9eb4074 | 2014-10-29 22:38:53 +0000 | [diff] [blame] | 454 | $$(eval $$(call define-art-gtest-rule-target,$$(art_gtest_name),2ND_,$$(2nd_library_path))) |
Andreas Gampe | afbaa1a | 2014-03-25 18:09:32 -0700 | [diff] [blame] | 455 | endif |
Nicolas Geoffray | 9eb4074 | 2014-10-29 22:38:53 +0000 | [diff] [blame] | 456 | $$(eval $$(call define-art-gtest-rule-target,$$(art_gtest_name),,$$(library_path))) |
Andreas Gampe | afbaa1a | 2014-03-25 18:09:32 -0700 | [diff] [blame] | 457 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 458 | # A rule to run the different architecture versions of the gtest. |
| 459 | .PHONY: test-art-target-gtest-$$(art_gtest_name) |
| 460 | test-art-target-gtest-$$(art_gtest_name): $$(ART_TEST_TARGET_GTEST_$$(art_gtest_name)_RULES) |
| 461 | $$(hide) $$(call ART_TEST_PREREQ_FINISHED,$$@) |
| 462 | |
| 463 | # Clear locally defined variables. |
| 464 | ART_TEST_TARGET_GTEST_$$(art_gtest_name)_RULES := |
Brian Carlstrom | 0796af0 | 2011-10-12 14:31:45 -0700 | [diff] [blame] | 465 | else # host |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 466 | LOCAL_CLANG := $$(ART_HOST_CLANG) |
| 467 | LOCAL_CFLAGS += $$(ART_HOST_CFLAGS) $$(ART_HOST_DEBUG_CFLAGS) |
Serban Constantinescu | 32f5b4d | 2014-11-25 20:05:46 +0000 | [diff] [blame] | 468 | LOCAL_SHARED_LIBRARIES += libicuuc-host libicui18n-host libnativehelper libziparchive-host libz-host libvixld |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 469 | LOCAL_LDLIBS := $(ART_HOST_LDLIBS) -lpthread -ldl |
Ian Rogers | bd5ea6a | 2014-04-16 16:34:44 -0700 | [diff] [blame] | 470 | LOCAL_IS_HOST_MODULE := true |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 471 | LOCAL_MULTILIB := both |
| 472 | LOCAL_MODULE_STEM_32 := $$(art_gtest_name)32 |
| 473 | LOCAL_MODULE_STEM_64 := $$(art_gtest_name)64 |
Andreas Gampe | 9b14dc3 | 2015-04-06 15:35:02 -0700 | [diff] [blame] | 474 | LOCAL_CLANG_CFLAGS += -Wno-used-but-marked-unused -Wno-deprecated -Wno-missing-noreturn # gtest issue |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 475 | include $$(BUILD_HOST_EXECUTABLE) |
Brian Carlstrom | 47a0d5a | 2011-10-12 21:20:05 -0700 | [diff] [blame] | 476 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 477 | ART_TEST_HOST_GTEST_$$(art_gtest_name)_RULES := |
| 478 | ART_TEST_HOST_VALGRIND_GTEST_$$(art_gtest_name)_RULES := |
| 479 | ifneq ($$(HOST_PREFER_32_BIT),true) |
| 480 | $$(eval $$(call define-art-gtest-rule-host,$$(art_gtest_name),2ND_)) |
| 481 | endif |
| 482 | $$(eval $$(call define-art-gtest-rule-host,$$(art_gtest_name),)) |
Ian Rogers | d912e5c | 2013-11-13 12:40:11 -0800 | [diff] [blame] | 483 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 484 | # Rules to run the different architecture versions of the gtest. |
| 485 | .PHONY: test-art-host-gtest-$$(art_gtest_name) |
| 486 | test-art-host-gtest-$$(art_gtest_name): $$(ART_TEST_HOST_GTEST_$$(art_gtest_name)_RULES) |
| 487 | $$(hide) $$(call ART_TEST_PREREQ_FINISHED,$$@) |
Ian Rogers | d912e5c | 2013-11-13 12:40:11 -0800 | [diff] [blame] | 488 | |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 489 | .PHONY: valgrind-test-art-host-gtest-$$(art_gtest_name) |
| 490 | valgrind-test-art-host-gtest-$$(art_gtest_name): $$(ART_TEST_HOST_VALGRIND_GTEST_$$(art_gtest_name)_RULES) |
| 491 | $$(hide) $$(call ART_TEST_PREREQ_FINISHED,$$@) |
| 492 | |
| 493 | # Clear locally defined variables. |
| 494 | ART_TEST_HOST_GTEST_$$(art_gtest_name)_RULES := |
| 495 | ART_TEST_HOST_VALGRIND_GTEST_$$(art_gtest_name)_RULES := |
| 496 | endif # host_or_target |
| 497 | |
| 498 | # Clear locally defined variables. |
| 499 | art_target_or_host := |
| 500 | art_gtest_filename := |
| 501 | art_gtest_extra_c_includes := |
| 502 | art_gtest_extra_shared_libraries := |
| 503 | art_gtest_name := |
Nicolas Geoffray | 96a37c8 | 2014-10-29 23:50:40 +0000 | [diff] [blame] | 504 | library_path := |
| 505 | 2nd_library_path := |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 506 | endef # define-art-gtest |
Carl Shapiro | 008e412 | 2011-06-23 17:27:46 -0700 | [diff] [blame] | 507 | |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 508 | ifeq ($(ART_BUILD_TARGET),true) |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 509 | $(foreach file,$(RUNTIME_GTEST_TARGET_SRC_FILES), $(eval $(call define-art-gtest,target,$(file),,libbacktrace))) |
| 510 | $(foreach file,$(COMPILER_GTEST_TARGET_SRC_FILES), $(eval $(call define-art-gtest,target,$(file),art/compiler,libartd-compiler libbacktrace))) |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 511 | endif |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 512 | ifeq ($(ART_BUILD_HOST),true) |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 513 | $(foreach file,$(RUNTIME_GTEST_HOST_SRC_FILES), $(eval $(call define-art-gtest,host,$(file),,libbacktrace))) |
| 514 | $(foreach file,$(COMPILER_GTEST_HOST_SRC_FILES), $(eval $(call define-art-gtest,host,$(file),art/compiler,libartd-compiler libbacktrace))) |
Brian Carlstrom | 07d579f | 2011-07-27 13:31:51 -0700 | [diff] [blame] | 515 | endif |
Tsu Chiang Chuang | ec245a4 | 2014-05-15 21:16:21 -0700 | [diff] [blame] | 516 | |
| 517 | # Used outside the art project to get a list of the current tests |
| 518 | RUNTIME_TARGET_GTEST_MAKE_TARGETS := |
| 519 | $(foreach file, $(RUNTIME_GTEST_TARGET_SRC_FILES), $(eval RUNTIME_TARGET_GTEST_MAKE_TARGETS += $$(notdir $$(basename $$(file))))) |
| 520 | COMPILER_TARGET_GTEST_MAKE_TARGETS := |
| 521 | $(foreach file, $(COMPILER_GTEST_TARGET_SRC_FILES), $(eval COMPILER_TARGET_GTEST_MAKE_TARGETS += $$(notdir $$(basename $$(file))))) |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 522 | |
| 523 | # Define all the combinations of host/target, valgrind and suffix such as: |
| 524 | # test-art-host-gtest or valgrind-test-art-host-gtest64 |
| 525 | # $(1): host or target |
| 526 | # $(2): HOST or TARGET |
| 527 | # $(3): valgrind- or undefined |
| 528 | # $(4): undefined, 32 or 64 |
| 529 | define define-test-art-gtest-combination |
| 530 | ifeq ($(1),host) |
| 531 | ifneq ($(2),HOST) |
| 532 | $$(error argument mismatch $(1) and ($2)) |
| 533 | endif |
| 534 | else |
| 535 | ifneq ($(1),target) |
| 536 | $$(error found $(1) expected host or target) |
| 537 | endif |
| 538 | ifneq ($(2),TARGET) |
| 539 | $$(error argument mismatch $(1) and ($2)) |
| 540 | endif |
| 541 | endif |
| 542 | |
| 543 | rule_name := $(3)test-art-$(1)-gtest$(4) |
Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 544 | ifeq ($(3),valgrind-) |
| 545 | ifneq ($(1),host) |
| 546 | $$(error valgrind tests only wired up for the host) |
| 547 | endif |
| 548 | dependencies := $$(ART_TEST_$(2)_VALGRIND_GTEST$(4)_RULES) |
| 549 | else |
| 550 | dependencies := $$(ART_TEST_$(2)_GTEST$(4)_RULES) |
| 551 | endif |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 552 | |
| 553 | .PHONY: $$(rule_name) |
| 554 | $$(rule_name): $$(dependencies) |
| 555 | $(hide) $$(call ART_TEST_PREREQ_FINISHED,$$@) |
| 556 | |
| 557 | # Clear locally defined variables. |
| 558 | rule_name := |
| 559 | dependencies := |
| 560 | endef # define-test-art-gtest-combination |
| 561 | |
| 562 | $(eval $(call define-test-art-gtest-combination,target,TARGET,,)) |
| 563 | $(eval $(call define-test-art-gtest-combination,target,TARGET,,$(ART_PHONY_TEST_TARGET_SUFFIX))) |
| 564 | ifdef TARGET_2ND_ARCH |
| 565 | $(eval $(call define-test-art-gtest-combination,target,TARGET,,$(2ND_ART_PHONY_TEST_TARGET_SUFFIX))) |
| 566 | endif |
| 567 | $(eval $(call define-test-art-gtest-combination,host,HOST,,)) |
| 568 | $(eval $(call define-test-art-gtest-combination,host,HOST,valgrind-,)) |
| 569 | $(eval $(call define-test-art-gtest-combination,host,HOST,,$(ART_PHONY_TEST_HOST_SUFFIX))) |
| 570 | $(eval $(call define-test-art-gtest-combination,host,HOST,valgrind-,$(ART_PHONY_TEST_HOST_SUFFIX))) |
| 571 | ifneq ($(HOST_PREFER_32_BIT),true) |
| 572 | $(eval $(call define-test-art-gtest-combination,host,HOST,,$(2ND_ART_PHONY_TEST_HOST_SUFFIX))) |
| 573 | $(eval $(call define-test-art-gtest-combination,host,HOST,valgrind-,$(2ND_ART_PHONY_TEST_HOST_SUFFIX))) |
| 574 | endif |
| 575 | |
| 576 | # Clear locally defined variables. |
| 577 | define-art-gtest-rule-target := |
| 578 | define-art-gtest-rule-host := |
| 579 | define-art-gtest := |
| 580 | define-test-art-gtest-combination := |
| 581 | RUNTIME_GTEST_COMMON_SRC_FILES := |
| 582 | COMPILER_GTEST_COMMON_SRC_FILES := |
| 583 | RUNTIME_GTEST_TARGET_SRC_FILES := |
| 584 | RUNTIME_GTEST_HOST_SRC_FILES := |
| 585 | COMPILER_GTEST_TARGET_SRC_FILES := |
| 586 | COMPILER_GTEST_HOST_SRC_FILES := |
| 587 | ART_TEST_CFLAGS := |
| 588 | ART_TEST_HOST_GTEST$(ART_PHONY_TEST_HOST_SUFFIX)_RULES := |
| 589 | ART_TEST_HOST_GTEST$(2ND_ART_PHONY_TEST_HOST_SUFFIX)_RULES := |
| 590 | ART_TEST_HOST_GTEST_RULES := |
| 591 | ART_TEST_HOST_VALGRIND_GTEST$(ART_PHONY_TEST_HOST_SUFFIX)_RULES := |
| 592 | ART_TEST_HOST_VALGRIND_GTEST$(2ND_ART_PHONY_TEST_HOST_SUFFIX)_RULES := |
| 593 | ART_TEST_HOST_VALGRIND_GTEST_RULES := |
| 594 | ART_TEST_TARGET_GTEST$(ART_PHONY_TEST_TARGET_SUFFIX)_RULES := |
| 595 | ART_TEST_TARGET_GTEST$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)_RULES := |
| 596 | ART_TEST_TARGET_GTEST_RULES := |
Nicolas Geoffray | 96a37c8 | 2014-10-29 23:50:40 +0000 | [diff] [blame] | 597 | ART_GTEST_TARGET_ANDROID_ROOT := |
Brian Carlstrom | eb85f2b | 2014-06-25 13:23:00 -0700 | [diff] [blame] | 598 | ART_GTEST_class_linker_test_DEX_DEPS := |
| 599 | ART_GTEST_compiler_driver_test_DEX_DEPS := |
| 600 | ART_GTEST_dex_file_test_DEX_DEPS := |
| 601 | ART_GTEST_exception_test_DEX_DEPS := |
| 602 | ART_GTEST_elf_writer_test_HOST_DEPS := |
| 603 | ART_GTEST_elf_writer_test_TARGET_DEPS := |
| 604 | ART_GTEST_jni_compiler_test_DEX_DEPS := |
| 605 | ART_GTEST_jni_internal_test_DEX_DEPS := |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 606 | ART_GTEST_oat_file_assistant_test_DEX_DEPS := |
| 607 | ART_GTEST_oat_file_assistant_test_HOST_DEPS := |
| 608 | ART_GTEST_oat_file_assistant_test_TARGET_DEPS := |
Brian Carlstrom | eb85f2b | 2014-06-25 13:23:00 -0700 | [diff] [blame] | 609 | ART_GTEST_object_test_DEX_DEPS := |
| 610 | ART_GTEST_proxy_test_DEX_DEPS := |
| 611 | ART_GTEST_reflection_test_DEX_DEPS := |
| 612 | ART_GTEST_stub_test_DEX_DEPS := |
| 613 | ART_GTEST_transaction_test_DEX_DEPS := |
Andreas Gampe | 3c0bb31 | 2015-02-19 10:02:19 -0800 | [diff] [blame] | 614 | ART_VALGRIND_DEPENDENCIES := |
Ian Rogers | 1a2f84e | 2014-07-07 16:05:18 -0700 | [diff] [blame] | 615 | $(foreach dir,$(GTEST_DEX_DIRECTORIES), $(eval ART_TEST_TARGET_GTEST_$(dir)_DEX :=)) |
| 616 | $(foreach dir,$(GTEST_DEX_DIRECTORIES), $(eval ART_TEST_HOST_GTEST_$(dir)_DEX :=)) |
Richard Uhler | 66d874d | 2015-01-15 09:37:19 -0800 | [diff] [blame] | 617 | ART_TEST_HOST_GTEST_MainStripped_DEX := |
| 618 | ART_TEST_TARGET_GTEST_MainStripped_DEX := |
Ian Rogers | afd9acc | 2014-06-17 08:21:54 -0700 | [diff] [blame] | 619 | GTEST_DEX_DIRECTORIES := |
Brian Carlstrom | 532714a | 2014-06-25 02:15:31 -0700 | [diff] [blame] | 620 | LOCAL_PATH := |