From 4f2ecd53a9daaf88bb7d075745eefb6e2e4741e0 Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Wed, 11 Jul 2018 18:11:13 +0200 Subject: Roll back to ANGLE/2845 --- gfx/angle/src/tests/angle_unittests_main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gfx/angle/src/tests/angle_unittests_main.cpp') diff --git a/gfx/angle/src/tests/angle_unittests_main.cpp b/gfx/angle/src/tests/angle_unittests_main.cpp index 1b44dbbcc..c52df1487 100755 --- a/gfx/angle/src/tests/angle_unittests_main.cpp +++ b/gfx/angle/src/tests/angle_unittests_main.cpp @@ -10,17 +10,17 @@ class CompilerTestEnvironment : public testing::Environment { public: - void SetUp() override + virtual void SetUp() { - if (!sh::Initialize()) + if (!ShInitialize()) { FAIL() << "Failed to initialize the compiler."; } } - void TearDown() override + virtual void TearDown() { - if (!sh::Finalize()) + if (!ShFinalize()) { FAIL() << "Failed to finalize the compiler."; } -- cgit v1.2.3