blob: 763dd5157f623bf3df67f67479b0f25946cd4132 [file] [log] [blame]
Simran Basi9c295b42017-02-16 11:49:18 -08001# Copyright (C) 2017 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agrls eed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15.PHONY: general-tests
Simran Basic8f21f62017-03-14 15:40:33 -070016
17general-tests-zip := $(PRODUCT_OUT)/general-tests.zip
18$(general-tests-zip): $(COMPATIBILITY.general-tests.FILES) $(SOONG_ZIP)
Colin Cross30c33b12017-05-02 17:25:45 -070019 echo $(sort $(COMPATIBILITY.general-tests.FILES)) > $@.list
Simran Basic8f21f62017-03-14 15:40:33 -070020 sed -i -e 's/\s\+/\n/g' $@.list
21 grep $(HOST_OUT_TESTCASES) $@.list > $@-host.list || true
22 grep $(TARGET_OUT_TESTCASES) $@.list > $@-target.list || true
Simran Basi8a431d92017-04-04 12:47:19 -070023 $(hide) $(SOONG_ZIP) -d -o $@ -P host -C $(HOST_OUT) -l $@-host.list -P target -C $(PRODUCT_OUT) -l $@-target.list
Simran Basic8f21f62017-03-14 15:40:33 -070024
25general-tests: $(general-tests-zip)
26$(call dist-for-goals, general-tests, $(general-tests-zip))