#ifndef EXACTNESS_CONFIG_H #define EXACTNESS_CONFIG_H #include typedef struct _Exactness_Config Exactness_Config; struct _Exactness_Config { unsigned short jobs; char *base_dir; char *dest_dir; Eina_Bool verbose; }; extern Exactness_Config exactness_config; typedef struct _Exactness_Ctx Exactness_Ctx; struct _Exactness_Ctx { unsigned int tests_executed; Eina_List *errors; Eina_List *compare_errors; }; extern Exactness_Ctx exactness_ctx; #define ORIG_SUBDIR "orig" #define CURRENT_SUBDIR "current" #define EXACTNESS_PATH_MAX 1024 #endif