From 6393e43357f07228f2fe3d7553d4ece12e50c449 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Wed, 8 Jun 2022 15:13:53 +0300 Subject: [PATCH] tests: rename color-shaper-matrix-test.c to color-icc-output-test.c The new name better matches the contents of the test. Currently the test creates output ICC profiles with matrix-shaper and cLUT forms, and tests that basic color conversion from input to output color space is correct. The common theme in this test program is to create ICC profiles to be used as output profiles. In the future this can include more kinds of testing, e.g. linear blending. OTOH, this test program will always be limited to SDR because HDR testing probably will not use ICC files. Signed-off-by: Pekka Paalanen --- tests/{color-shaper-matrix-test.c => color-icc-output-test.c} | 0 tests/meson.build | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename tests/{color-shaper-matrix-test.c => color-icc-output-test.c} (100%) diff --git a/tests/color-shaper-matrix-test.c b/tests/color-icc-output-test.c similarity index 100% rename from tests/color-shaper-matrix-test.c rename to tests/color-icc-output-test.c diff --git a/tests/meson.build b/tests/meson.build index cc7f8c7b..920eb9d7 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -258,11 +258,11 @@ if get_option('color-management-lcms') error('color-management-lcms tests require lcms2 which was not found. Or, you can use \'-Dcolor-management-lcms=false\'.') endif tests += [ - { 'name': 'color-metadata-parsing' }, { - 'name': 'color-shaper-matrix', + 'name': 'color-icc-output', 'dep_objs': [ dep_libm, dep_lcms_util ] }, + { 'name': 'color-metadata-parsing' }, { 'name': 'lcms-util', 'dep_objs': [ dep_lcms_util ]