[mutter] tests/cogl: Migrate primitive and journal test
- From: Marge Bot <marge-bot src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter] tests/cogl: Migrate primitive and journal test
- Date: Mon, 8 Aug 2022 22:13:12 +0000 (UTC)
commit 20111fa8ca51313e4f501f589c74b356e895b05d
Author: Jonas Ã…dahl <jadahl gmail com>
Date: Thu Aug 4 22:16:56 2022 +0200
tests/cogl: Migrate primitive and journal 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 | 2 --
cogl/tests/conform/test-declarations.h | 1 -
src/tests/cogl/conform/meson.build | 1 +
.../tests => src/tests/cogl}/conform/test-primitive-and-journal.c | 8 +++++---
5 files changed, 6 insertions(+), 7 deletions(-)
---
diff --git a/cogl/tests/conform/meson.build b/cogl/tests/conform/meson.build
index e4558be50c..29ecdbd70e 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-primitive-and-journal.c',
'test-copy-replace-texture.c',
'test-pipeline-cache-unrefs-texture.c',
'test-texture-no-allocate.c',
diff --git a/cogl/tests/conform/test-conform-main.c b/cogl/tests/conform/test-conform-main.c
index a048dbb096..cfed8f7f2c 100644
--- a/cogl/tests/conform/test-conform-main.c
+++ b/cogl/tests/conform/test-conform-main.c
@@ -70,8 +70,6 @@ main (int argc, char **argv)
UNPORTED_TEST (test_vertex_buffer_interleved);
UNPORTED_TEST (test_vertex_buffer_mutability);
- ADD_TEST (test_primitive_and_journal, 0, 0);
-
ADD_TEST (test_copy_replace_texture, 0, 0);
ADD_TEST (test_pipeline_cache_unrefs_texture, 0, 0);
diff --git a/cogl/tests/conform/test-declarations.h b/cogl/tests/conform/test-declarations.h
index c4018ce521..8c815b71a2 100644
--- a/cogl/tests/conform/test-declarations.h
+++ b/cogl/tests/conform/test-declarations.h
@@ -5,7 +5,6 @@ void test_path (void);
void test_path_clip (void);
void test_depth_test (void);
void test_backface_culling (void);
-void test_primitive_and_journal (void);
void test_copy_replace_texture (void);
void test_pipeline_cache_unrefs_texture (void);
void test_pipeline_shader_state (void);
diff --git a/src/tests/cogl/conform/meson.build b/src/tests/cogl/conform/meson.build
index c7603e7e9a..eab077b2c1 100644
--- a/src/tests/cogl/conform/meson.build
+++ b/src/tests/cogl/conform/meson.build
@@ -32,6 +32,7 @@ cogl_tests = [
[ 'test-alpha-textures', [] ],
[ 'test-texture-get-set-data', [] ],
[ 'test-framebuffer-get-bits', [] ],
+ [ 'test-primitive-and-journal', [] ],
]
cogl_test_conformance_includes = [
diff --git a/cogl/tests/conform/test-primitive-and-journal.c
b/src/tests/cogl/conform/test-primitive-and-journal.c
similarity index 96%
rename from cogl/tests/conform/test-primitive-and-journal.c
rename to src/tests/cogl/conform/test-primitive-and-journal.c
index 343812ca20..3f045d87bd 100644
--- a/cogl/tests/conform/test-primitive-and-journal.c
+++ b/src/tests/cogl/conform/test-primitive-and-journal.c
@@ -1,7 +1,6 @@
#include <cogl/cogl.h>
-#include "test-declarations.h"
-#include "test-utils.h"
+#include "tests/cogl-test-utils.h"
typedef CoglVertexP2C4 Vertex;
@@ -63,7 +62,7 @@ create_pipeline (void)
return pipeline;
}
-void
+static void
test_primitive_and_journal (void)
{
CoglPrimitive *primitives[2];
@@ -118,3 +117,6 @@ test_primitive_and_journal (void)
g_print ("OK\n");
}
+COGL_TEST_SUITE (
+ g_test_add_func ("/primitive-and-journal", test_primitive_and_journal);
+)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]