30c33b1c2b
Sort the inputs to remove duplicates, which fixes: found two file paths to be copied into dest path: "target/testcases/minikin_perftests/minikin_perftests", both ["target/testcases/minikin_perftests/minikin_perftests"]"out/target/product/bullhead/testcases/minikin_perftests/minikin_perftests" and ["target/testcases/minikin_perftests/minikin_perftests"]"out/target/product/bullhead/testcases/minikin_perftests/minikin_perftests"! Test: m -j device-tests Change-Id: I8d7e83cd077c62461c9a08e7f1b49c321fbcb0e3
26 lines
1.2 KiB
Makefile
26 lines
1.2 KiB
Makefile
# Copyright (C) 2017 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 agrls eed 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.
|
|
|
|
.PHONY: general-tests
|
|
|
|
general-tests-zip := $(PRODUCT_OUT)/general-tests.zip
|
|
$(general-tests-zip): $(COMPATIBILITY.general-tests.FILES) $(SOONG_ZIP)
|
|
echo $(sort $(COMPATIBILITY.general-tests.FILES)) > $@.list
|
|
sed -i -e 's/\s\+/\n/g' $@.list
|
|
grep $(HOST_OUT_TESTCASES) $@.list > $@-host.list || true
|
|
grep $(TARGET_OUT_TESTCASES) $@.list > $@-target.list || true
|
|
$(hide) $(SOONG_ZIP) -d -o $@ -P host -C $(HOST_OUT) -l $@-host.list -P target -C $(PRODUCT_OUT) -l $@-target.list
|
|
|
|
general-tests: $(general-tests-zip)
|
|
$(call dist-for-goals, general-tests, $(general-tests-zip))
|