Andrea Jemmett
Andrea Jemmett
This can actually already be achieved (version 0.12). ```bash gum table --separator=$'\t'
Do some fields in the input have maybe some quotes? I think that those need to be properly escaped or delimit the entire field, e.g.: ``` field1field2"field3" ``` This would...
> Perhaps there is a check where it is expected that each single row contains the same number of values, i. e. the same number of alternating spaces? I think...
Actually seems to be possible to have a variable number of fields by passing a negative value to the `Reader` field `FieldsPerRecord`. Would be nice to be able to control...
Yes, precisely! This would enable testing different URL formats in the first example I provided. For the second one example I think the only way is to add more plugins...
As far as we understand, you have already checked reachability for the MAGMA paper. From your paper: > Bugs which are not triggered, even after multiple campaigns, are manually inspected...
Could you share the test cases that trigger the bugs with us? We can use them to check which harness triggers each bug, if you do not have that information...
Thanks, that helps. Is there a way to find the association between the bug ID used in the paper (e.g. `AAH032`, etc.) and the patch ID (e.g. `SQL001`)?
I found out that 35eab0ee81000bf7167d780ddefffc51b3975d32 changed the names and made a script to parse it: ```python #!/usr/bin/env python3 import json from pathlib import Path import re import subprocess COMMIT_ID =...
@moratorium08 I think the problem is with older versions of LLD which do not support IFUNC. PHP compiles fine with LTO and LLVM 16. Just be aware that it's memory...