Реорганизация тестов (в процессе)

This commit is contained in:
Andrey Pokidov 2025-02-13 01:20:29 +07:00
parent 43bf030295
commit fcf793c758
41 changed files with 252 additions and 314 deletions

View file

@ -51,7 +51,7 @@ int test_vector3_is_zero_fp32()
print_testing_success();
return TEST_SUCCES;
return TEST_SUCCESS;
}
// ==================== FP64 ==================== //
@ -103,18 +103,18 @@ int test_vector3_is_zero_fp64()
print_testing_success();
return TEST_SUCCES;
return TEST_SUCCESS;
}
int test_vector3_is_zero()
{
if (test_vector3_is_zero_fp32() != TEST_SUCCES) {
if (test_vector3_is_zero_fp32() != TEST_SUCCESS) {
return TEST_FAILED;
}
if (test_vector3_is_zero_fp64() != TEST_SUCCES) {
if (test_vector3_is_zero_fp64() != TEST_SUCCESS) {
return TEST_FAILED;
}
return TEST_SUCCES;
return TEST_SUCCESS;
}