├── .gitattributes ├── .gitignore ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── Makefile ├── README.md ├── common ├── post-fs-data.sh ├── sepolicy.sh ├── service.sh ├── system.prop ├── unity_install.sh ├── unity_uninstall.sh ├── unity_upgrade.sh └── unityfiles │ ├── addon.sh │ ├── tools │ └── arm │ │ └── busybox │ └── util_functions.sh ├── install.sh ├── module.prop ├── system ├── app │ ├── TouchLatency │ │ └── TouchLatency.apk │ └── UiBench │ │ └── UiBench.apk ├── lib64 │ ├── libncursesw.so.6 │ └── libprocps.so.7 └── xbin │ ├── callbench │ ├── cyclictest │ ├── dhrystone │ ├── fio │ ├── fio-dedupe │ ├── fio-genzipf │ ├── fio-verify-state │ ├── gtcycles │ ├── hackbench │ ├── iozone │ ├── memcpy │ ├── perf │ ├── rt-app │ ├── schbench │ ├── slabtop │ ├── stress-ng │ └── sysbench └── uninstall.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /*.zip 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/README.md -------------------------------------------------------------------------------- /common/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/common/post-fs-data.sh -------------------------------------------------------------------------------- /common/sepolicy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/common/sepolicy.sh -------------------------------------------------------------------------------- /common/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/common/service.sh -------------------------------------------------------------------------------- /common/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/common/system.prop -------------------------------------------------------------------------------- /common/unity_install.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/unity_uninstall.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/unity_upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/common/unity_upgrade.sh -------------------------------------------------------------------------------- /common/unityfiles/addon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/common/unityfiles/addon.sh -------------------------------------------------------------------------------- /common/unityfiles/tools/arm/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/common/unityfiles/tools/arm/busybox -------------------------------------------------------------------------------- /common/unityfiles/util_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/common/unityfiles/util_functions.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/install.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/module.prop -------------------------------------------------------------------------------- /system/app/TouchLatency/TouchLatency.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/app/TouchLatency/TouchLatency.apk -------------------------------------------------------------------------------- /system/app/UiBench/UiBench.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/app/UiBench/UiBench.apk -------------------------------------------------------------------------------- /system/lib64/libncursesw.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/lib64/libncursesw.so.6 -------------------------------------------------------------------------------- /system/lib64/libprocps.so.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/lib64/libprocps.so.7 -------------------------------------------------------------------------------- /system/xbin/callbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/callbench -------------------------------------------------------------------------------- /system/xbin/cyclictest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/cyclictest -------------------------------------------------------------------------------- /system/xbin/dhrystone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/dhrystone -------------------------------------------------------------------------------- /system/xbin/fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/fio -------------------------------------------------------------------------------- /system/xbin/fio-dedupe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/fio-dedupe -------------------------------------------------------------------------------- /system/xbin/fio-genzipf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/fio-genzipf -------------------------------------------------------------------------------- /system/xbin/fio-verify-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/fio-verify-state -------------------------------------------------------------------------------- /system/xbin/gtcycles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/gtcycles -------------------------------------------------------------------------------- /system/xbin/hackbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/hackbench -------------------------------------------------------------------------------- /system/xbin/iozone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/iozone -------------------------------------------------------------------------------- /system/xbin/memcpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/memcpy -------------------------------------------------------------------------------- /system/xbin/perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/perf -------------------------------------------------------------------------------- /system/xbin/rt-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/rt-app -------------------------------------------------------------------------------- /system/xbin/schbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/schbench -------------------------------------------------------------------------------- /system/xbin/slabtop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/slabtop -------------------------------------------------------------------------------- /system/xbin/stress-ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/stress-ng -------------------------------------------------------------------------------- /system/xbin/sysbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/system/xbin/sysbench -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdrag0n/benchkit/HEAD/uninstall.sh --------------------------------------------------------------------------------