[mutter] tests/cogl: Migrate alpha texture test



commit 85ad013b2d2d243355d641b81d7a6c33384866dc
Author: Jonas Ã…dahl <jadahl gmail com>
Date:   Thu Aug 4 22:05:33 2022 +0200

    tests/cogl: Migrate alpha texture test
    
    Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2555>

 cogl/tests/conform/meson.build                               | 1 -
 cogl/tests/conform/test-conform-main.c                       | 1 -
 cogl/tests/conform/test-declarations.h                       | 1 -
 src/tests/cogl/conform/meson.build                           | 1 +
 {cogl/tests => src/tests/cogl}/conform/test-alpha-textures.c | 8 +++++---
 5 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/cogl/tests/conform/meson.build b/cogl/tests/conform/meson.build
index b9abea6493..27d9451f19 100644
--- a/cogl/tests/conform/meson.build
+++ b/cogl/tests/conform/meson.build
@@ -1,6 +1,5 @@
 cogl_test_conformance_sources = [
   'test-conform-main.c',
-  'test-alpha-textures.c',
   'test-texture-get-set-data.c',
   'test-framebuffer-get-bits.c',
   'test-primitive-and-journal.c',
diff --git a/cogl/tests/conform/test-conform-main.c b/cogl/tests/conform/test-conform-main.c
index 1ef3bdc966..8cc12b60bf 100644
--- a/cogl/tests/conform/test-conform-main.c
+++ b/cogl/tests/conform/test-conform-main.c
@@ -66,7 +66,6 @@ main (int argc, char **argv)
   UNPORTED_TEST (test_texture_rectangle);
   UNPORTED_TEST (test_texture_pixmap_x11);
   ADD_TEST (test_texture_get_set_data, 0, 0);
-  ADD_TEST (test_alpha_textures, 0, 0);
 
   UNPORTED_TEST (test_vertex_buffer_contiguous);
   UNPORTED_TEST (test_vertex_buffer_interleved);
diff --git a/cogl/tests/conform/test-declarations.h b/cogl/tests/conform/test-declarations.h
index 2396f08c39..cc8ce78769 100644
--- a/cogl/tests/conform/test-declarations.h
+++ b/cogl/tests/conform/test-declarations.h
@@ -6,7 +6,6 @@ void test_path_clip (void);
 void test_depth_test (void);
 void test_backface_culling (void);
 void test_texture_get_set_data (void);
-void test_alpha_textures (void);
 void test_framebuffer_get_bits (void);
 void test_primitive_and_journal (void);
 void test_copy_replace_texture (void);
diff --git a/src/tests/cogl/conform/meson.build b/src/tests/cogl/conform/meson.build
index b9529278e4..bae45967a9 100644
--- a/src/tests/cogl/conform/meson.build
+++ b/src/tests/cogl/conform/meson.build
@@ -29,6 +29,7 @@ cogl_tests = [
   [ 'test-alpha-test', [] ],
   [ 'test-map-buffer-range', [] ],
   [ 'test-npot-texture', [] ],
+  [ 'test-alpha-textures', [] ],
 ]
 
 cogl_test_conformance_includes = [
diff --git a/cogl/tests/conform/test-alpha-textures.c b/src/tests/cogl/conform/test-alpha-textures.c
similarity index 97%
rename from cogl/tests/conform/test-alpha-textures.c
rename to src/tests/cogl/conform/test-alpha-textures.c
index 05a2a8a37b..ebba4a26e4 100644
--- a/cogl/tests/conform/test-alpha-textures.c
+++ b/src/tests/cogl/conform/test-alpha-textures.c
@@ -2,8 +2,7 @@
 
 #include <string.h>
 
-#include "test-declarations.h"
-#include "test-utils.h"
+#include "tests/cogl-test-utils.h"
 
 static void
 create_pipeline (CoglTexture **tex_out,
@@ -45,7 +44,7 @@ create_pipeline (CoglTexture **tex_out,
   *tex_out = tex;
 }
 
-void
+static void
 test_alpha_textures (void)
 {
   CoglTexture *tex1, *tex2;
@@ -122,3 +121,6 @@ test_alpha_textures (void)
     g_print ("OK\n");
 }
 
+COGL_TEST_SUITE (
+  g_test_add_func ("/alpha-textures", test_alpha_textures);
+)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]