Skip to content

Commit

Permalink
Lengthen the timeout for two test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Jun 12, 2024
1 parent 4ec683b commit 6667266
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test/cmake/Video.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ add_python_test(
TEST_MODULE opengl.core_switch_opengl_to_software_runtime
CONTENT "${NDS_ROM}"
REQUIRES_OPENGL
TIMEOUT 30
)
# This test is slower for some reason;
# there must be a lot of overhead
# in the OpenGL context creation

add_python_test(
NAME "Core can switch from software to OpenGL mode and back at runtime"
Expand All @@ -58,4 +62,15 @@ add_python_test(
TEST_MODULE opengl.core_switch_opengl_to_software_and_back_runtime
CONTENT "${NDS_ROM}"
REQUIRES_OPENGL
TIMEOUT 30
)

# See https://github.com/JesseTG/melonds-ds/issues/155
add_python_test(
NAME "Core does not crash at in-core error screen when using OpenGL"
TEST_MODULE ""
CONTENT "${NDS_ROM}"
CORE_OPTION "melonds_render_mode=opengl"
REQUIRES_OPENGL
DISABLED
) # TODO: Implement

0 comments on commit 6667266

Please sign in to comment.