Displaying 1 result from an estimated 1 matches for "function_to_test".
2020 Aug 10
2
ORC JIT Weekly #19 -- Relocatable object level mocking with llvm-jitlink.
...ect file by mocking their callees. For example, suppose we have an
object file, test_code.o, compiled from the following C source (which we do
not have access to):
void irrelevant_function() { irrelevant_external(); }
int function_to_mock(int X) {
return /* some function of X */;
}
static void function_to_test() {
...
int Y = function_to_mock();
printf("Y is %i\n", Y);
}
We would like to know how function_to_test behaves when we change the
behavior of function_to_mock. We can do this by writing a test harness:
void function_to_test();
int function_to_mock(int X) {
printf("used m...