UnitTests: Disable VertexLoader tests if EGL is enabled.

Interface design issues prevent this test from linking correctly. Until this issue is resolved, we'll disable the tests for now.
This commit is contained in:
Tony Wasserka 2014-08-04 18:40:39 +02:00
parent 0d989ea82b
commit fa5588e103
1 changed files with 4 additions and 1 deletions

View File

@ -1 +1,4 @@
add_dolphin_test(VertexLoaderTest VertexLoaderTest.cpp)
# This test currently doesn't link correctly when EGL is enabled due to issues with the GLInterface design
if(NOT USE_EGL)
add_dolphin_test(VertexLoaderTest VertexLoaderTest.cpp)
endif()