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