Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d99694bb authored by Courtney Goeltzenleuchter's avatar Courtney Goeltzenleuchter
Browse files

Fix naming of test so it's printed properly

When run, I was seeing:
[ RUN      ] EGLTest.1
[       OK ] EGLTest.1 (11 ms)

That was because the test name I was using EGL_KHR_no_config_context,
matched an EGL enum and was being replaced.
This changes test name so it does not conflict with the EGL enum.
Test: adb shell /data/nativetest/EGL_test/EGL_test
Bug: 63077212

Change-Id: I5a04e18ba53e855a3579025c14ee11eeddae2bcf
parent 0f5bf761
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -431,7 +431,7 @@ TEST_F(EGLTest, EGLConfigFP16) {
    EXPECT_TRUE(eglDestroySurface(mEglDisplay, eglSurface));
}

TEST_F(EGLTest, EGL_KHR_no_config_context) {
TEST_F(EGLTest, EGLNoConfigContext) {
    if (!hasWideColorDisplay) {
        // skip this test if device does not have wide-color display
        return;