Реорганизация тестов (в процессе)
This commit is contained in:
parent
43bf030295
commit
fcf793c758
41 changed files with 252 additions and 314 deletions
|
@ -83,7 +83,7 @@ int test_are_close_fp32()
|
|||
|
||||
print_testing_success();
|
||||
|
||||
return TEST_SUCCES;
|
||||
return TEST_SUCCESS;
|
||||
}
|
||||
|
||||
// ==================== FP64 ==================== //
|
||||
|
@ -159,18 +159,18 @@ int test_are_close_fp64()
|
|||
|
||||
print_testing_success();
|
||||
|
||||
return TEST_SUCCES;
|
||||
return TEST_SUCCESS;
|
||||
}
|
||||
|
||||
int test_are_close()
|
||||
{
|
||||
if (test_are_close_fp32() != TEST_SUCCES) {
|
||||
if (test_are_close_fp32() != TEST_SUCCESS) {
|
||||
return TEST_FAILED;
|
||||
}
|
||||
|
||||
if (test_are_close_fp64() != TEST_SUCCES) {
|
||||
if (test_are_close_fp64() != TEST_SUCCESS) {
|
||||
return TEST_FAILED;
|
||||
}
|
||||
|
||||
return TEST_SUCCES;
|
||||
return TEST_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue