Re: [android-building] “compatibility.mk” in aosp of vts building means

2020-01-16 Thread 'Colin Cross' via Android Building
COMPATIBILITY.* variables are set here:
https://cs.android.com/android/platform/superproject/+/master:build/make/core/definitions.mk;l=2899?q=file:build%2Fmake%20COMPATIBILITY%5C
.
You normally add modules to android-vts.zip by setting LOCAL_TEST_SUITES :=
vts in an Android.mk file or test_suites: ["vts"] in an Android.bp file.

On Thu, Jan 16, 2020 at 9:23 AM xiang tianyu 
wrote:

> hellp ,can you help me with this problem about "compatibility.mk" of vts
> building system.
>
>
> the source code of "compatibility.mk" is in aosp code ,it's path is
> "build/make/core/tasks/tools/compatibility.mk"
>
>
> there is a line in "compatibility.mk" which is "test_artifacts :=
> $(COMPATIBILITY.$(test_suite_name).FILES)"
>
>
> I try to change the $(test_suite_name) ,but it can not package files to
> android-vts.zip,how does the COMPATIBILITY work?
>
>
> I can not find the defination of COMPATIBILITY.
>
>
> wish your help ,thank you
>
> --
> --
> You received this message because you are subscribed to the "Android
> Building" mailing list.
> To post to this group, send email to android-building@googlegroups.com
> To unsubscribe from this group, send email to
> android-building+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-building?hl=en
>
> ---
> You received this message because you are subscribed to the Google Groups
> "Android Building" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-building+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-building/769ed951-666c-44f6-baff-cc2da905518b%40googlegroups.com
> 
> .
>

-- 
-- 
You received this message because you are subscribed to the "Android Building" 
mailing list.
To post to this group, send email to android-building@googlegroups.com
To unsubscribe from this group, send email to
android-building+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-building?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Android Building" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-building+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-building/CAMbhsRRANUya7Y5ap%3DzOsZvawAwpjPomppKZH8fB-jxRt2nhvg%40mail.gmail.com.


Re: [android-building] “compatibility.mk” in aosp of vts building means

2020-01-16 Thread 'Dan Willemsen' via Android Building
The correct links this time:

https://cs.android.com/android/platform/superproject/+/master:build/make/core/base_rules.mk;l=733?q=create-suite-dependencies=android%2Fplatform%2Fsuperproject
https://cs.android.com/android/platform/superproject/+/master:build/make/core/definitions.mk;l=2899?q=create-suite-dependencies=android%2Fplatform%2Fsuperproject

- Dan

On Thu, Jan 16, 2020 at 9:28 AM Dan Willemsen  wrote:

> The test_suite_name needs to match the individual module definitions that
> set `test_suites: ["vts"]` or `LOCAL_COMPATIBILITY_SUITE := vts`.
>
> The make code controlling that is roughly:
>
>
> https://source.corp.google.com/android/build/make/core/base_rules.mk;cl=master;l=733?q=create-suite-dependencies=package:%5Eandroid$
>
> https://source.corp.google.com/android/build/make/core/definitions.mk;cl=master;l=2899?q=COMPATIBILITY.*FILES%20lang:makefile%20case:yes=package:%5Eandroid$
>
> - Dan
>
> On Thu, Jan 16, 2020 at 9:23 AM xiang tianyu 
> wrote:
>
>> hellp ,can you help me with this problem about "compatibility.mk" of vts
>> building system.
>>
>>
>> the source code of "compatibility.mk" is in aosp code ,it's path is
>> "build/make/core/tasks/tools/compatibility.mk"
>>
>>
>> there is a line in "compatibility.mk" which is "test_artifacts :=
>> $(COMPATIBILITY.$(test_suite_name).FILES)"
>>
>>
>> I try to change the $(test_suite_name) ,but it can not package files to
>> android-vts.zip,how does the COMPATIBILITY work?
>>
>>
>> I can not find the defination of COMPATIBILITY.
>>
>>
>> wish your help ,thank you
>>
>> --
>> --
>> You received this message because you are subscribed to the "Android
>> Building" mailing list.
>> To post to this group, send email to android-building@googlegroups.com
>> To unsubscribe from this group, send email to
>> android-building+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-building?hl=en
>>
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "Android Building" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to android-building+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/android-building/769ed951-666c-44f6-baff-cc2da905518b%40googlegroups.com
>> 
>> .
>>
>

-- 
-- 
You received this message because you are subscribed to the "Android Building" 
mailing list.
To post to this group, send email to android-building@googlegroups.com
To unsubscribe from this group, send email to
android-building+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-building?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Android Building" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-building+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-building/CALQgHdmD1TfuXvdT7Gz1WBt9Y_03b17Kx9vTFhMwMj-4HrbTzQ%40mail.gmail.com.


Re: [android-building] “compatibility.mk” in aosp of vts building means

2020-01-16 Thread 'Dan Willemsen' via Android Building
The test_suite_name needs to match the individual module definitions that
set `test_suites: ["vts"]` or `LOCAL_COMPATIBILITY_SUITE := vts`.

The make code controlling that is roughly:

https://source.corp.google.com/android/build/make/core/base_rules.mk;cl=master;l=733?q=create-suite-dependencies=package:%5Eandroid$
https://source.corp.google.com/android/build/make/core/definitions.mk;cl=master;l=2899?q=COMPATIBILITY.*FILES%20lang:makefile%20case:yes=package:%5Eandroid$

- Dan

On Thu, Jan 16, 2020 at 9:23 AM xiang tianyu 
wrote:

> hellp ,can you help me with this problem about "compatibility.mk" of vts
> building system.
>
>
> the source code of "compatibility.mk" is in aosp code ,it's path is
> "build/make/core/tasks/tools/compatibility.mk"
>
>
> there is a line in "compatibility.mk" which is "test_artifacts :=
> $(COMPATIBILITY.$(test_suite_name).FILES)"
>
>
> I try to change the $(test_suite_name) ,but it can not package files to
> android-vts.zip,how does the COMPATIBILITY work?
>
>
> I can not find the defination of COMPATIBILITY.
>
>
> wish your help ,thank you
>
> --
> --
> You received this message because you are subscribed to the "Android
> Building" mailing list.
> To post to this group, send email to android-building@googlegroups.com
> To unsubscribe from this group, send email to
> android-building+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-building?hl=en
>
> ---
> You received this message because you are subscribed to the Google Groups
> "Android Building" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-building+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-building/769ed951-666c-44f6-baff-cc2da905518b%40googlegroups.com
> 
> .
>

-- 
-- 
You received this message because you are subscribed to the "Android Building" 
mailing list.
To post to this group, send email to android-building@googlegroups.com
To unsubscribe from this group, send email to
android-building+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-building?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Android Building" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-building+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-building/CALQgHd%3DSqiqE8b1KRNo%2BO2wbG6NM4HkaG2TQ%2BGrtVHy8Niha7g%40mail.gmail.com.


[android-building] “compatibility.mk” in aosp of vts building means

2020-01-16 Thread xiang tianyu


hellp ,can you help me with this problem about "compatibility.mk" of vts 
building system.


the source code of "compatibility.mk" is in aosp code ,it's path is 
"build/make/core/tasks/tools/compatibility.mk"


there is a line in "compatibility.mk" which is "test_artifacts := 
$(COMPATIBILITY.$(test_suite_name).FILES)"


I try to change the $(test_suite_name) ,but it can not package files to 
android-vts.zip,how does the COMPATIBILITY work?


I can not find the defination of COMPATIBILITY.


wish your help ,thank you

-- 
-- 
You received this message because you are subscribed to the "Android Building" 
mailing list.
To post to this group, send email to android-building@googlegroups.com
To unsubscribe from this group, send email to
android-building+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-building?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Android Building" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-building+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-building/769ed951-666c-44f6-baff-cc2da905518b%40googlegroups.com.