summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/markup-parse.c8
1 files 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);