googlecodelabs / android-perf-testing

Automated Performance Testing on Android
https://codelabs.developers.google.com/codelabs/android-perf-testing/
Apache License 2.0
93 stars 39 forks source link

TestListener is not executing EnablePostTestDumpsys #45

Open chronvas opened 6 years ago

chronvas commented 6 years ago

Executing the monkey runner script does not produce any gfx dumpsys file at all.

screen shot 2018-05-25 at 15 50 21

The tests that produce an output file are : battery, getprops and location. All of their associated classes EnableDeviceGetPropsInfo, EnableBatteryStatsDump are being called from TestListener class with the exception of the location request info dump which is called directly from the GoogleLocationManagerService by TestListener.dumpLocationRequestInformation

gfxinfo output should be generated from class EnablePostTestDumpsys which is never used.

Are we suppose to use this class and call before and after in the TestListener?