forked from openkylin/platform_build
Merge "Sort inputs to compatibility suite zip files" am: 328290459d
am: a2b1052ae2
Change-Id: I89612f53a26d5f5f7ed08ffe8820080ae73810e7
This commit is contained in:
commit
ba89e33a6c
|
@ -17,7 +17,7 @@
|
|||
|
||||
device-tests-zip := $(PRODUCT_OUT)/device-tests.zip
|
||||
$(device-tests-zip): $(COMPATIBILITY.device-tests.FILES) $(SOONG_ZIP)
|
||||
echo $(COMPATIBILITY.device-tests.FILES) > $@.list
|
||||
echo $(sort $(COMPATIBILITY.device-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
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
general-tests-zip := $(PRODUCT_OUT)/general-tests.zip
|
||||
$(general-tests-zip): $(COMPATIBILITY.general-tests.FILES) $(SOONG_ZIP)
|
||||
echo $(COMPATIBILITY.general-tests.FILES) > $@.list
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue