blob: dca5cd8a39f63ef22380d270625c6c53cfbb449b [file] [log] [blame]
#
# Copyright (C) 2016 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
VTS_TESTCASES_OUT := $(HOST_OUT)/vts/android-vts/testcases
# Copy test executable.
vts_src_file := $(TARGET_OUT_DATA_NATIVE_TESTS)/$(module_path)/$(module_name)
vts_dst_file := $(VTS_TESTCASES_OUT)/$(module_path)/$(module_name)
$(vts_dst_file): $(vts_src_file) | $(ACP)
$(hide) mkdir -p $(dir $(vts_dst_file))
$(hide) $(ACP) -fp $< $@
vts: $(vts_dst_file)
# Copy test config.
vts_src_file := $(poc_target_dir)/$(dir $(module_testname))/$(module_name)/poc.config
vts_dst_file := $(VTS_TESTCASES_OUT)/$(module_path)/$(module_name).config
$(vts_dst_file): $(vts_src_file) | $(ACP)
$(hide) mkdir -p $(dir $(vts_dst_file))
$(hide) $(ACP) -fp $< $@
vts: $(vts_dst_file)