Android CTS的使用


Android CTS的使用
1. 下载Android源码(用repo)
2. 编译Android的源码
    进入android 目录
   命令行:make 
    时间有点长....在android源码目录下得到一个out目录

3. 编译CTS
在android目录下执行
. build/envsetup.sh  (这样就有很多命令可以使用了)
make cts
4. 配置环境变量
把 out/host/linux-x86/bin目录配置到PATH
5. 测试执行 cts 命令
命令行:cts 
进入cts 控制台
命令:  help
得到相关的帮助

附加:. 配置文件信息

当有:[INSTALL_FAILED_OLDER_SDK] 错误的时候, 修改配置文件build\core\version_defaults.mk

   1. ifeq "" "$(DEFAULT_APP_TARGET_SDK)"  
   2.   # This is the default minSdkVersion and targetSdkVersion to use for  
   3.   # all .apks created by the build system.  It can be overridden by explicitly  
   4.   # setting these in the .apk's AndroidManifest.xml.  It is either the code  
   5.   # name of the development build or, if this is a release build, the official  
   6.   # SDK version of this release.  
   7.   ifeq "REL" "$(PLATFORM_VERSION_CODENAME)"  
   8. DEFAULT_APP_TARGET_SDK := $(PLATFORM_SDK_VERSION)-------改成----->DEFAULT_APP_TARGET_SDK := 9或8或7.....  
   9.   else  
  10. DEFAULT_APP_TARGET_SDK := $(PLATFORM_VERSION_CODENAME)-------改成-------> DEFAULT_APP_TARGET_SDK := 9或8或7......  
  11.   endif  
  12. endif  
  再重新make cts

当需要自己写一个cts的测试用例
1.  首先写一个测试用例,
①.模仿android/cts/tests/tests/example 这个测试用例写一个. 如/android/cts/tests/tests/myExample
②.修改Android.mk:在myExample目录下面

   1. # Replace "Example" with your name.  
   2. LOCAL_PACKAGE_NAME := MyExampleTestCases  

2.  把android/cts/test/tests/myExample加到编译目录列表中
①.找到android/cts/build/core/tasks/cts.mk
include cts/CtsTestcaseList.mk
②. 找到CtsTestcaseList.mk这个文件:/android/cts/CtsTestcaseList.mk

# CTS_COVERAGE_TEST_CASE_LIST :=  
# .... 

   1. /  
   2. CTSMyExampleTestCases  

重新make cts.就可以使用自己的测试用例了..



你可能感兴趣的:(android,list,测试,Build,Path,include)