tests/cogl: Migrate sub-texture test

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2555>
This commit is contained in:
Jonas Ådahl 2022-08-04 19:59:07 +02:00 committed by Marge Bot
parent 18dd64dd45
commit 6ac0c196cb
5 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,5 @@
cogl_test_conformance_sources = [
'test-conform-main.c',
'test-sub-texture.c',
'test-custom-attributes.c',
'test-offscreen.c',
'test-journal.c',

View File

@ -67,7 +67,6 @@ main (int argc, char **argv)
ADD_TEST (test_npot_texture, 0, 0);
UNPORTED_TEST (test_multitexture);
UNPORTED_TEST (test_texture_mipmaps);
ADD_TEST (test_sub_texture, 0, 0);
UNPORTED_TEST (test_texture_rectangle);
UNPORTED_TEST (test_texture_pixmap_x11);
ADD_TEST (test_texture_get_set_data, 0, 0);

View File

@ -8,7 +8,6 @@ void test_backface_culling (void);
void test_layer_remove (void);
void test_sparse_pipeline (void);
void test_npot_texture (void);
void test_sub_texture (void);
void test_texture_get_set_data (void);
void test_read_texture_formats (void);
void test_write_texture_formats (void);

View File

@ -12,6 +12,7 @@ cogl_tests = [
'test-premult',
'test-snippets',
'test-wrap-modes',
'test-sub-texture',
]
cogl_test_conformance_includes = [

View File

@ -1,8 +1,7 @@
#include <cogl/cogl.h>
#include <string.h>
#include "test-declarations.h"
#include "test-utils.h"
#include "tests/cogl-test-utils.h"
#define SOURCE_SIZE 32
#define SOURCE_DIVISIONS_X 2
@ -301,7 +300,7 @@ validate_result (TestState *state)
cogl_object_unref (test_tex);
}
void
static void
test_sub_texture (void)
{
TestState state;
@ -324,3 +323,6 @@ test_sub_texture (void)
g_print ("OK\n");
}
COGL_TEST_SUITE (
g_test_add_func ("/sub-texture", test_sub_texture);
)