[pango/markup-parse-fixes: 4/5] markup-parse: Make generating files more convenient
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pango/markup-parse-fixes: 4/5] markup-parse: Make generating files more convenient
- Date: Wed, 3 Mar 2021 02:27:37 +0000 (UTC)
commit 283f646dd7ac44d0c0d7b12d15bd2f6a4346c8f5
Author: Matthias Clasen <mclasen redhat com>
Date: Tue Mar 2 20:59:49 2021 -0500
markup-parse: Make generating files more convenient
Don't print extraneous output when we are generating
an .expected file.
tests/markup-parse.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/tests/markup-parse.c b/tests/markup-parse.c
index 2ee8c85e..9f081ab7 100644
--- a/tests/markup-parse.c
+++ b/tests/markup-parse.c
@@ -146,20 +146,20 @@ main (int argc, char *argv[])
g_setenv ("LC_ALL", "C", TRUE);
setlocale (LC_ALL, "");
- g_test_init (&argc, &argv, NULL);
-
/* allow to easily generate expected output for new test cases */
- if (argc > 1)
+ if (argc > 1 && argv[1][0] != '-')
{
GString *string;
string = g_string_sized_new (0);
test_file (argv[1], string);
- g_test_message ("%s", string->str);
+ g_print ("%s", string->str);
return 0;
}
+ g_test_init (&argc, &argv, NULL);
+
path = g_test_build_filename (G_TEST_DIST, "markups", NULL);
dir = g_dir_open (path, 0, &error);
g_free (path);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]