DaGeRe / peass

Tool for Performance analysis of software system
GNU Affero General Public License v3.0
10 stars 9 forks source link

Fix test package name and missing env variables #137

Closed alex-iotiq closed 1 year ago

alex-iotiq commented 1 year ago

Fixes:

ADB executes wrong test because of wrong package name. If test has this project package com.my.package.app.test, then the command will be am instrument -w com.my.package.app.test.test.

Tests in the android-example-project have the package name com.example.android_example but ADB instrument command expects the name to be com.example.android_example.test.

DaGeRe commented 1 year ago

Thanks for the PR, looks fine!