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

Commit d08f53d8 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

release-request-d3de000d-8c5a-4c3c-b63e-e989421d7762-for-git_oc-mr1-release-41...

release-request-d3de000d-8c5a-4c3c-b63e-e989421d7762-for-git_oc-mr1-release-4176727 snap-temp-L91200000081901352

Change-Id: If3af58294b609c03a8c03df6847185df9873e7a1
parents 6b062a2e be6845d5
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -42,6 +42,23 @@ cc_test {
}

cc_test {
    name: "binderLibTest_IPC_32",
    srcs: ["binderLibTest.cpp"],
    shared_libs: [
        "libbinder",
        "libutils",
    ],
    compile_multilib: "32",
    cflags: ["-DBINDER_IPC_32BIT=1"],
}

cc_test {
    product_variables: {
        binder32bit: {
            cflags: ["-DBINDER_IPC_32BIT=1"],
        },
    },

    name: "binderLibTest",
    srcs: ["binderLibTest.cpp"],
    shared_libs: [
+6 −1
Original line number Diff line number Diff line
@@ -200,6 +200,7 @@ TEST_F(EGLTest, EGLDisplayP3) {

    if (!hasWideColorDisplay) {
        // skip this test if device does not have wide-color display
        std::cerr << "[          ] Device does not support wide-color, test skipped" << std::endl;
        return;
    }

@@ -285,6 +286,7 @@ TEST_F(EGLTest, EGLDisplayP31010102) {

    if (!hasWideColorDisplay) {
        // skip this test if device does not have wide-color display
        std::cerr << "[          ] Device does not support wide-color, test skipped" << std::endl;
        return;
    }

@@ -370,6 +372,7 @@ TEST_F(EGLTest, EGLConfigFP16) {

    if (!hasWideColorDisplay) {
        // skip this test if device does not have wide-color display
        std::cerr << "[          ] Device does not support wide-color, test skipped" << std::endl;
        return;
    }

@@ -431,9 +434,10 @@ 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
        std::cerr << "[          ] Device does not support wide-color, test skipped" << std::endl;
        return;
    }

@@ -471,6 +475,7 @@ TEST_F(EGLTest, EGLConfig1010102) {

    if (!hasWideColorDisplay) {
        // skip this test if device does not have wide-color display
        std::cerr << "[          ] Device does not support wide-color, test skipped" << std::endl;
        return;
    }

+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ int main(int /*argc*/, char** /*argv*/) {

    for (EGLint i=0 ; i<n ; i++) {
        printf("EGLConfig[%d]\n", i);
        for (int attr = 0 ; attr<sizeof(attributes)/sizeof(Attribute) ; attr++) {
        for (unsigned attr = 0 ; attr<sizeof(attributes)/sizeof(Attribute) ; attr++) {
            EGLint value;
            eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
            printf("\t%-32s: %10d (0x%08x)\n", attributes[attr].name, value, value);