OSDN Git Service

tests/exynos: remove unused-function build warning
authorSeung-Woo Kim <sw0312.kim@samsung.com>
Fri, 31 Mar 2017 03:30:57 +0000 (12:30 +0900)
committerEmil Velikov <emil.l.velikov@gmail.com>
Mon, 3 Apr 2017 16:46:06 +0000 (17:46 +0100)
The function g2d_blend_test() is blocked to call because of
feature unsafety. This patch blocks with proper feature name
and also blocks the function itself to remove build warning.

Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
tests/exynos/exynos_fimg2d_test.c

index 797fb6e..3495c62 100644 (file)
@@ -523,6 +523,7 @@ fail:
        return 0;
 }
 
+#if EXYNOS_G2D_USERPTR_TEST
 static int g2d_blend_test(struct exynos_device *dev,
                                        struct exynos_bo *src,
                                        struct exynos_bo *dst,
@@ -621,6 +622,7 @@ fail:
 
        return 0;
 }
+#endif
 
 static int g2d_checkerboard_test(struct exynos_device *dev,
                                        struct exynos_bo *src,
@@ -864,7 +866,7 @@ int main(int argc, char **argv)
         *
         * Disable the test for now, until the kernel code has been sanitized.
         */
-#if 0
+#if EXYNOS_G2D_USERPTR_TEST
        ret  = g2d_blend_test(dev, src, bo, G2D_IMGBUF_USERPTR);
        if (ret < 0)
                fprintf(stderr, "failed to test blend operation.\n");