运行dalvik测试程序
运行 dalvik 测试程序
1. 说明
一般在 android
平台上的程序都运行在应用框架之中,它也可以直接运行,以下介绍最简单的运行和调试方法。
2. 运行 dalvik 自带的 test 程序
配置 ANDROID 系统环境
_ $ cd $ANDROID_SRC
$. build/envsetup.sh _编辑桌面环境脚本 test_env.sh(否则 run-test 程序运行时报错) 内容如下: _ #!/bin/sh
base=pwd
root=\(base/out/debug/host/linux-x86/product/sim/system export ANDROID_ROOT=\)root
bootpath=$root/framework
export
BOOTCLASSPATH=\(bootpath/core.jar:\)bootpath/ext.jar:\(bootpath/framework.jar:\)bootpath/android.policy.jar:\(bootpath/services.jar export
ANDROID_DATA=/tmp/dalvik_\)USER
mkdir -p $ANDROID_DATA/dalvik-cache _
并执行该脚本
_ $. test_env.sh _
- 运行测试程序 003
_ $ cd dalvik/test
$./run-test 003 _
(转载请注明出处:http://xy0811.spaces.live.com)
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.