[gegl] testing tool: print names of operations when run with --all
- From: Ãyvind KolÃs <ok src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] testing tool: print names of operations when run with --all
- Date: Thu, 2 Aug 2012 19:21:11 +0000 (UTC)
commit c02b27120683967e7c8e21dd4612ca05152443c7
Author: Ville Sokk <ville sokk gmail com>
Date: Tue Jul 17 11:56:25 2012 +0300
testing tool: print names of operations when run with --all
bin/gegl-tester.c | 21 ++++++++++++++++-----
1 files changed, 16 insertions(+), 5 deletions(-)
---
diff --git a/bin/gegl-tester.c b/bin/gegl-tester.c
index 0220231..9547718 100644
--- a/bin/gegl-tester.c
+++ b/bin/gegl-tester.c
@@ -95,14 +95,26 @@ process_operations (GType type)
{
GeglOperationClass *operation_class;
const gchar *image, *xml, *name;
+ gboolean matches;
operation_class = g_type_class_ref (operations[i]);
image = gegl_operation_class_get_key (operation_class, "reference-image");
xml = gegl_operation_class_get_key (operation_class, "reference-composition");
name = gegl_operation_class_get_key (operation_class, "name");
- if (name && image && xml && g_regex_match (regex, name, 0, NULL) &&
- !g_regex_match (exc_regex, name, 0, NULL))
+ if (name == NULL)
+ {
+ result = result && process_operations (operations[i]);
+ continue;
+ }
+
+ matches = g_regex_match (regex, name, 0, NULL) &&
+ !g_regex_match (exc_regex, name, 0, NULL);
+
+ if (output_all && matches)
+ g_printf ("%s\n", name);
+
+ if (image && xml && matches)
{
gchar *image_path = g_build_path (G_DIR_SEPARATOR_S, reference_dir, image, NULL);
gchar *output_path = operation_to_path (name, FALSE);
@@ -202,8 +214,7 @@ process_operations (GType type)
}
/* if we are running with --all and the operation doesn't have a
composition, use standard composition and images, don't test */
- else if (output_all && name && g_regex_match (regex, name, 0, NULL) &&
- !g_regex_match (exc_regex, name, 0, NULL) &&
+ else if (output_all && matches &&
!(g_type_is_a (operations[i], GEGL_TYPE_OPERATION_SINK) ||
g_type_is_a (operations[i], GEGL_TYPE_OPERATION_TEMPORAL)))
{
@@ -250,7 +261,7 @@ process_operations (GType type)
g_object_unref (composition);
}
- result = result && process_operations(operations[i]);
+ result = result && process_operations (operations[i]);
}
g_free (operations);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]