#include <common/str.h>
Go to the source code of this file.
Data Structures | |
struct | batch_result_ty |
struct | batch_result_list_ty |
Functions | |
batch_result_list_ty * | batch_result_list_new (void) |
void | batch_result_list_delete (batch_result_list_ty *) |
void | batch_result_list_append (batch_result_list_ty *brlp, string_ty *file_name, int exit_status, string_ty *architecture, double elapsed) |
void | batch_result_list_append_list (batch_result_list_ty *, const batch_result_list_ty *) |
bool | batch_result_list_member (batch_result_list_ty *brlp, string_ty *file_name, string_ty *architecture) |
void batch_result_list_append | ( | batch_result_list_ty * | brlp, | |
string_ty * | file_name, | |||
int | exit_status, | |||
string_ty * | architecture, | |||
double | elapsed | |||
) |
void batch_result_list_append_list | ( | batch_result_list_ty * | , | |
const batch_result_list_ty * | ||||
) |
void batch_result_list_delete | ( | batch_result_list_ty * | ) |
bool batch_result_list_member | ( | batch_result_list_ty * | brlp, | |
string_ty * | file_name, | |||
string_ty * | architecture | |||
) |
The batch_result_list_member function is used to test whether the given (file_name, architecture) pair is a member of the given test result list.
brlp | The results list in question. | |
file_name | The file name in question. | |
architecture | The architecture name, or NULL |
batch_result_list_ty* batch_result_list_new | ( | void | ) |