I would like to write tests for a C library, in C. I'd like to mock out some functions for the test.

Suppose my library is compiled from the following source:

/* foo.h */
int myfunction(int x, int y);

/* foo.c */
#include "foo.h"

static int square(int x) { return x * x; }

int myfunction(int x, int y) {
    return square(x) + square(y);
}

I want to write a test like this:

/* foo_test.c */
#include "foo.h"

static int square(int x) { return x + 1; }

int main(void) {
    assert(myfunction(0, 0) == 2);
    return 0;
}

Is there any way I can compile so that myfunction will use the definition of square in foo_test.c, instead of the one in foo.c, only when linking the executable foo_test? That is, I want to compile foo.c into a library (let's call it libfoo.so), and then compile foo_test.c with libfoo.so and some magic so that I'll get an executable foo_test which uses the different implementation of square.

It would be helpful to hear solutions for when square is not declared static, but solving the above case would be even better.

EDIT: It seems hopeless, but here's an idea: Suppose I compile with -O0 -g so it's unlikely that square will get inlined and I should have symbols showing where the call was resolved. Is there a way to sneak into the object file and swap out the resolved reference?

link|improve this question

LD_PRELOAD can give this to you, but I'm hoping someone else has a better answer. – sarnold Jan 22 at 5:13
2  
Not for static functions – bdonlan Jan 22 at 5:14
1  
I don't think LD_PRELOAD is going to do it. I want to be able to change a function (that might be static) inside a library that's already compiled. As I understand (and maybe this is false), the symbol square inside myfunction will already be resolved before I try to link foo_test. – leif Jan 22 at 5:15
When your function is static, then the answer is no, you absolutely cannot do that. Static functions may be inlined and optimized out of existence altogether. – n.m. Jan 22 at 6:14
@n.m.: Non-static functions may also be inlined and optimized out of existence as well. Modern compilers with link-time optimization will do that, both GCC and Clang/LLVM are examples. – Dietrich Epp Jan 22 at 7:46
show 2 more comments
feedback

2 Answers

up vote 1 down vote accepted

It looks like you are using GCC, so you can use the weak attribute:

The weak attribute causes the declaration to be emitted as a weak symbol rather than a global. This is primarily useful in defining library functions which can be overridden in user code, though it can also be used with non-function declarations. Weak symbols are supported for ELF targets, and also for a.out targets when using the GNU assembler and linker.

http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html

link|improve this answer
Thanks. I can probably take it from here, but can you give me any tips on modifying a weak reference? – leif Jan 23 at 6:56
1  
Just define a function with the same name that is NOT weak, then it should override the weak function in the library. – David Grayson Jan 23 at 19:16
feedback

No, there's no solution for this. If there's a function in scope with a name matching a function call within a source file, that function will be used. No declaration trickery is going to talk the compiler out of it. By the time the linker is active, the name reference will have already been resolved.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.