tests: rename PRINT_FORMAT to TAP_PRINTF_FORMAT
[babeltrace.git] / tests / utils / tap / tap.h
index 190c4a942b42c10ba1a7684131c5993699e3a41d..c653076db09da2741a828bb1e63c91c0a6baa297 100644 (file)
 #define skip_end() } while(0);
 
 #ifdef __MINGW_PRINTF_FORMAT
 #define skip_end() } while(0);
 
 #ifdef __MINGW_PRINTF_FORMAT
-# define PRINT_FORMAT __MINGW_PRINTF_FORMAT
+# define TAP_PRINTF_FORMAT __MINGW_PRINTF_FORMAT
 #else
 #else
-# define PRINT_FORMAT printf
+# define TAP_PRINTF_FORMAT printf
 #endif
 
 #endif
 
-__attribute__((format(PRINT_FORMAT, 5, 6)))
+__attribute__((format(TAP_PRINTF_FORMAT, 5, 6)))
 unsigned int _gen_result(int, const char *, const char *, unsigned int, const char *, ...);
 
 int plan_no_plan(void);
 int plan_skip_all(const char *);
 int plan_tests(unsigned int);
 
 unsigned int _gen_result(int, const char *, const char *, unsigned int, const char *, ...);
 
 int plan_no_plan(void);
 int plan_skip_all(const char *);
 int plan_tests(unsigned int);
 
-__attribute__((format(PRINT_FORMAT, 1, 2)))
+__attribute__((format(TAP_PRINTF_FORMAT, 1, 2)))
 unsigned int diag(const char *, ...);
 void diag_multiline(const char *);
 
 unsigned int diag(const char *, ...);
 void diag_multiline(const char *);
 
-__attribute__((format(PRINT_FORMAT, 2, 3)))
+__attribute__((format(TAP_PRINTF_FORMAT, 2, 3)))
 int skip(unsigned int, const char *, ...);
 
 int skip(unsigned int, const char *, ...);
 
-__attribute__((format(PRINT_FORMAT, 1, 2)))
+__attribute__((format(TAP_PRINTF_FORMAT, 1, 2)))
 void todo_start(const char *, ...);
 void todo_end(void);
 
 void todo_start(const char *, ...);
 void todo_end(void);
 
This page took 0.02305 seconds and 4 git commands to generate.