https://github.com/iipeace/guider
python环境下集成guider的经验分享
初始化Guider环境:
步骤一:Push Python-Guider环境
假设 python-guider
环境是一个文件夹或者压缩文件,需要将其推送到 Android 设备上。假设该环境位于本地路径 /path/to/python-guider
。
adb push /path/to/python-guider /data/local/tmp/
这将把 python-guider
环境推送到 Android 设备的 /data/local/tmp/
目录下。
步骤二:Push 到 Android
假设要推送的文件或文件夹是一个名为 python-guider.zip
的压缩包。
adb push python-guider.zip /data/local/tmp/
这将把 python-guider.zip
压缩包推送到 Android 设备的 /data/local/tmp/
目录下。
步骤三:在 Android 下解压 Zip
假设 python-guider.zip
是在 Android 设备上的 /data/local/tmp/
目录下。
adb shell "unzip /data/local/tmp/python-guider.zip -d /data/local/tmp/"
这将在 Android 设备上的 /data/local/tmp/
目录下解压 python-guider.zip
文件。
步骤四:删除 Android 下的 Zip 包
假设在前面的步骤中,已经解压了 python-guider.zip
。
adb shell rm /data/local/tmp/python-guider.zip
这将在 Android 设备上删除 /data/local/tmp/python-guider.zip
文件。
步骤五:授权 run.sh 和 Python
假设在 python-guider
环境中有一个 run.sh
脚本和 python
可执行文件。
adb shell "chmod +x /data/local/tmp/python-guider/run.sh"
adb shell "chmod +x /data/local/tmp/python-guider/python"
这将分别授予 /data/local/tmp/python-guider/run.sh
和 /data/local/tmp/python-guider/python
可执行权限。
在guider环境下执行对应top命令,可以guider -h获取命令帮助,执行性能测试,获取.out输出文件,使用内置的draw命令可以画图生成该out文件对应数据的svg图表(例:
感兴趣的可以去试试这个guider,个人使用感觉数据很全面精确,对性能测试有很好的帮助,感谢阅读本篇分享!
标签:tmp,发帖,python,local,data,Guider,开源,Android,guider From: https://blog.csdn.net/weixin_47914566/article/details/141034899