26 lines
457 B
C
26 lines
457 B
C
#ifndef AMDUAT_TESTS_CONFORMANCE_RESULT_H
|
|
#define AMDUAT_TESTS_CONFORMANCE_RESULT_H
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
const char *backend;
|
|
int status;
|
|
} amduat_conformance_backend_result_t;
|
|
|
|
enum {
|
|
AMDUAT_CONFORMANCE_STATUS_PASS = 0,
|
|
AMDUAT_CONFORMANCE_STATUS_FAIL = 1,
|
|
AMDUAT_CONFORMANCE_STATUS_SKIP = 2
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* AMDUAT_TESTS_CONFORMANCE_RESULT_H */
|