struct trc_report_test_iter_entry

Overview

Result of test iteration run More…

#include <trc_report.h>

struct trc_report_test_iter_entry {
    // fields

    int tin;
    int test_id;
    char* hash;
    te_test_result result;
    bool is_exp;
    unsigned int args_max;
    trc_report_argument* args;
    unsigned int args_n;

    // methods

    TAILQ_ENTRY(trc_report_test_iter_entry);
};

Detailed Documentation

Result of test iteration run

Fields

int tin

Test Identification Number

int test_id

Test ID

char* hash

Test arguments hash

te_test_result result

Obtained result

bool is_exp

Does obtained result match one of expected?

unsigned int args_max

Maximum number of arguments the space is allocated for

trc_report_argument* args

Actual arguments

unsigned int args_n

Number of arguments

Methods

TAILQ_ENTRY(trc_report_test_iter_entry)

List links