testutils.h (amanda-tag-community-3.5.2) | : | testutils.h (amanda-tag-community-3.5.3) | ||
---|---|---|---|---|
skipping to change at line 78 | skipping to change at line 78 | |||
/* | /* | |||
* Debugging | * Debugging | |||
*/ | */ | |||
/* Debugging macro taking printf arguments. This is only enabled if the '-d' fl ag | /* Debugging macro taking printf arguments. This is only enabled if the '-d' fl ag | |||
* is given on the commandline. You can use g_debug, too, if you'd prefer. */ | * is given on the commandline. You can use g_debug, too, if you'd prefer. */ | |||
#define tu_dbg(...) if (tu_debugging_enabled) { g_fprintf(stderr, __VA_ARGS__); } | #define tu_dbg(...) if (tu_debugging_enabled) { g_fprintf(stderr, __VA_ARGS__); } | |||
/* Is debugging enabled for this test run? (set internally) */ | /* Is debugging enabled for this test run? (set internally) */ | |||
int tu_debugging_enabled; | extern gboolean tu_debugging_enabled; | |||
/* | /* | |||
* Main loop | * Main loop | |||
*/ | */ | |||
int testutils_run_tests(int argc, char **argv, TestUtilsTest *tests); | int testutils_run_tests(int argc, char **argv, TestUtilsTest *tests); | |||
#endif /* TESTUTILS_H */ | #endif /* TESTUTILS_H */ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |