André Silva

Results 84 comments of André Silva

The failure is related to the `asm` dependency not being able to handle Java 18 classfiles: ``` Caused by: java.lang.IllegalArgumentException: Unsupported class file major version 62 at org.objectweb.asm.ClassReader.(ClassReader.java:196) at org.objectweb.asm.ClassReader.(ClassReader.java:177)...

Hi @jose , I see two issues with that command: 1. The `junit4tests` only accept qualified test method names (e.g., `org.apache.commons.csv.CSVFormatTest#testEquals`) 2. `flacoco`'s cli is not handling lists of arguments...

Hi @jose , Sorry for the late response, this got buried after summer. You are correct, I had forgotten that we actually computed these for the experiment. They are retrieved...

Hi @sophiakolak, We never got to fix this one, no. Could you let me know in which Jsoup bugs you have encountered this issue, and the command you are using...

Hi @sophiakolak, I believe https://github.com/STAMP-project/test-runner/pull/146 fixes the bug you encountered when running `flacoco` on the projects you mentioned. With that patch, I was able to run flacoco on all the...

`1.0.6` has been released :) @sophiakolak

Hi @ericma1999 , Sorry for the delay. I tried to reproduce this by running flacoco on `camel-core` (I assumed, by the path, that this is the module you are trying...

Hi @martinezmatias Yes. Based on pure observation tho, I'd say the bottleneck is larger on `test-runner`'s side. I'll try to confirm this with some profiling.

Hot spots of the `flacoco` process running on `math_70` from `astor`'s examples: Self times ![pic-selected-210729-1700-23](https://user-images.githubusercontent.com/31904862/127515932-e5cd5ba0-ca98-4493-a95d-0841d200e36d.png) Total times ![pic-selected-210729-1702-01](https://user-images.githubusercontent.com/31904862/127516056-f3514703-aa94-43fb-9d09-06b899c5b5d1.png) Optimizations that jump to mind: 1. `SpoonTestMethod`'s fields can be computed just...

Hot spots of the `test-runner` process running on the same example as before: Self times ![pic-selected-210729-1739-13](https://user-images.githubusercontent.com/31904862/127522500-4af5c59d-920a-44dd-9574-85a122ebf17a.png) Expanded self times for the top result. This highlights that the most time consuming...