Files
compute-runtime/unit_tests/context/gl/windows/context_gl_tests_windows.cpp
Maciej Dziuban 6464fda1b2 Extract tests to windows directory
Related-To: NEO-3599
Change-Id: Ibb5be80ae0e1096e21de2e08d900e0e7f15666bc
Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
2020-01-22 11:30:28 +01:00

29 lines
651 B
C++

/*
* Copyright (C) 2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "unit_tests/context/gl/context_gl_tests.h"
namespace NEO {
TEST_F(GlContextTest, GivenClGlContextWhenContextIsCreatedThenSuccess) {
testContextCreation(CL_GL_CONTEXT_KHR);
}
TEST_F(GlContextTest, GivenEglContextWhenContextIsCreatedThenSuccess) {
testContextCreation(CL_EGL_DISPLAY_KHR);
}
TEST_F(GlContextTest, GivenGlxContextWhenContextIsCreatedThenSuccess) {
testContextCreation(CL_GLX_DISPLAY_KHR);
}
TEST_F(GlContextTest, GivenWglContextWhenContextIsCreatedThenSuccess) {
testContextCreation(CL_WGL_HDC_KHR);
}
} // namespace NEO