diff options
Diffstat (limited to 'tests/fs-tests/integrity/integck.c')
-rw-r--r-- | tests/fs-tests/integrity/integck.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/fs-tests/integrity/integck.c b/tests/fs-tests/integrity/integck.c index f09cfaf..fbd6cc5 100644 --- a/tests/fs-tests/integrity/integck.c +++ b/tests/fs-tests/integrity/integck.c @@ -41,6 +41,16 @@ #define PROGRAM_NAME "integck" #include "common.h" +/* + * WARNING! This is a dirty hack! The symbols for static functions are not + * printed in the stack backtrace. So we remove ths 'static' keyword using the + * pre-processor. This is really error-prone because this won't work if, e.g., + * local static variables were used. + */ +#ifdef INTEGCK_DEBUG +#define static +#endif + #define MAX_RANDOM_SEED 10000000 /* The pattern for the top directory where we run the test */ |