New columns in tables #1172
-
|
Is it possible to add more columns in tables? it will be very helpful to have a column for the formula size. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Yes! First, you need to have a Example from CPAchecker: |
Beta Was this translation helpful? Give feedback.
Yes! First, you need to have a
get_value_from_outputmethod in your tool-info module. This receives as a parameter the tool output and an identifier for what it should look (such that you do not need to hard-code the selection in the tool-info module). Then you need to specify this identifier in a<column>tag (docs). There are two ways to do this: Either you add the<column>tag directly to the benchmark definition that you give tobenchexec. Then the value will be extracted after the run (by calling the above method for each run) and stored in the.results.xml.bz2file.table-generatorwill then use it automatically. The disadvantage is that you need to decide to add the<column>tag be…