| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| integer, | public, | parameter | :: | TEST_PENDING | = | 0 | |
| integer, | public, | parameter | :: | TEST_RUNNING | = | 1 | |
| integer, | public, | parameter | :: | TEST_PASSED | = | 2 | |
| integer, | public, | parameter | :: | TEST_FAILED | = | 3 |
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| character(len=MAX_PATH_LEN), | public | :: | name | = | "" | ||
| character(len=MAX_PATH_LEN), | public | :: | executable | = | "" | ||
| integer, | public | :: | status | = | TEST_PENDING | ||
| character(len=MAX_OUTPUT_LEN), | public | :: | output | = | "" | ||
| integer, | public | :: | exit_code | = | 0 | ||
| real, | public | :: | duration | = | 0.0 |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | test_executable | |||
| type(test_result_t), | intent(out) | :: | result |