From fa5588e1036b4ca667335791348d6fcd285db117 Mon Sep 17 00:00:00 2001 From: Tony Wasserka Date: Mon, 4 Aug 2014 18:40:39 +0200 Subject: [PATCH] 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. --- Source/UnitTests/VideoCommon/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/UnitTests/VideoCommon/CMakeLists.txt b/Source/UnitTests/VideoCommon/CMakeLists.txt index b5198536ed..9c1b32b595 100644 --- a/Source/UnitTests/VideoCommon/CMakeLists.txt +++ b/Source/UnitTests/VideoCommon/CMakeLists.txt @@ -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()