Closed vsoch closed 3 years ago
my 2 cents is that YARPGen already more or less does this, in the sense that it emits func.c and driver.c that are intended to be compiled separately and then linked.
so I think the real question you want to ask is what features you want to generate, that cross this interface, in order to get the sort of stress testing that you want. for example, YARPGen won't do anything with varargs, so if you wanted to test that you could add support for it or else create a custom fuzzer.
also you might wish to read an old 2005 paper "Random testing of C calling conventions"
Hi there! I really like your testing framework, and since you have experience is random program generation was wondering if I could ask you advice for doing something similar for testing application binary interface compatibility. E.g.,:
For the third, there is a tool my group is working on to make this assessment, so really I think I'm just asking if you think there is a reasonable way to generate sets of programs that link to one another, and simulate error cases? Thank you!