Android CTS : downloading of CTS, environment setup, building and execution

后端 未结 5 1776
慢半拍i
慢半拍i 2021-01-15 08:49

If you know about Compatibility Test Suit for Android. Please send us the information regarding source code downloading of CTS, environment setup, building and execution.

5条回答
  •  -上瘾入骨i
    2021-01-15 09:37

    Download cts source code :

    $ mkdir 
    $ cd 
    $ repo init -u https://android.googlesource.com/platform/manifest -b  ( tag_name :-  android-cts-8.0_r2,  android-cts-7.1_r10)
    $ repo sync -d -c –q
    

    Compile complete cts package:

    $ cd 
    $ . build/envsetup.sh
    $ make cts -j TARGET_PRODUCT=aosp_arm64 
    

    Compile particular cts :

    $  cd 
    $  . build/envsetup.sh
    $  cd 
    $  mm
    

提交回复
热议问题