Skip to content

Commit

Permalink
C.I. Fix timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-lunarg committed Dec 20, 2023
1 parent c636f5b commit 9359eb4
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ endif()

option(GLM_TEST_ENABLE_LANG_EXTENSIONS "Enable language extensions" OFF)

option(GLM_DISABLE_AUTO_DETECTION "Enable language extensions" OFF)
option(GLM_DISABLE_AUTO_DETECTION "Disable platform, compiler, arch and C++ language detection" OFF)

if(GLM_DISABLE_AUTO_DETECTION)
add_definitions(-DGLM_FORCE_PLATFORM_UNKNOWN -DGLM_FORCE_COMPILER_UNKNOWN -DGLM_FORCE_ARCH_UNKNOWN -DGLM_FORCE_CXX_UNKNOWN)
Expand Down
2 changes: 1 addition & 1 deletion test/perf/perf_matrix_div.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ static int comp_mat4_div_mat4(std::size_t Samples)

int main()
{
std::size_t const Samples = 100000;
std::size_t const Samples = 1000;

int Error = 0;

Expand Down
2 changes: 1 addition & 1 deletion test/perf/perf_matrix_inverse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ static int comp_mat4_inverse(std::size_t Samples)

int main()
{
std::size_t const Samples = 100000;
std::size_t const Samples = 1000;

int Error = 0;

Expand Down
2 changes: 1 addition & 1 deletion test/perf/perf_matrix_mul.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ static int comp_mat4_mul_mat4(std::size_t Samples)

int main()
{
std::size_t const Samples = 100000;
std::size_t const Samples = 1000;

int Error = 0;

Expand Down
2 changes: 1 addition & 1 deletion test/perf/perf_matrix_mul_vector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ static int comp_mat4_mul_vec4(std::size_t Samples)

int main()
{
std::size_t const Samples = 100000;
std::size_t const Samples = 1000;

int Error = 0;

Expand Down
2 changes: 1 addition & 1 deletion test/perf/perf_matrix_transpose.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ static int comp_mat4_transpose(std::size_t Samples)

int main()
{
std::size_t const Samples = 100000;
std::size_t const Samples = 1000;

int Error = 0;

Expand Down
2 changes: 1 addition & 1 deletion test/perf/perf_vector_mul_matrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ static int comp_vec4_mul_mat4(std::size_t Samples)

int main()
{
std::size_t const Samples = 100000;
std::size_t const Samples = 1000;

int Error = 0;

Expand Down

0 comments on commit 9359eb4

Please sign in to comment.