asrt
Automated System Runtime Testing library
Loading...
Searching...
No Matches
result.h
1
12#ifndef ASRTC_RESULT_H
13#define ASRTC_RESULT_H
14
15#include "../asrtl/core_proto.h"
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21#include <stdint.h>
22
25{
26 uint16_t test_id;
27 uint32_t run_id;
28 asrt_test_result res;
29};
30
31#ifdef __cplusplus
32}
33#endif
34
35#endif
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee ...
Definition: result.h:25
uint32_t run_id
Unique run token issued by the controller.
Definition: result.h:27
asrt_test_result res
Pass / failure / error code.
Definition: result.h:28
uint16_t test_id
ID of the test that was executed.
Definition: result.h:26