From ca2e2b3d6973b1f942571ba65bd8b57153847777 Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Wed, 14 Nov 2018 14:53:28 +0100 Subject: [PATCH] tests,json: Suffix .json to test pattern * tests/json/t-config.in, tests/json/t-config.out: Renamed. * t-json.c (run_test): Use new naming pattern. --- tests/json/{t-config.in => t-config.in.json} | 0 tests/json/{t-config.out => t-config.out.json} | 0 tests/json/t-json.c | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename tests/json/{t-config.in => t-config.in.json} (100%) rename tests/json/{t-config.out => t-config.out.json} (100%) diff --git a/tests/json/t-config.in b/tests/json/t-config.in.json similarity index 100% rename from tests/json/t-config.in rename to tests/json/t-config.in.json diff --git a/tests/json/t-config.out b/tests/json/t-config.out.json similarity index 100% rename from tests/json/t-config.out rename to tests/json/t-config.out.json diff --git a/tests/json/t-json.c b/tests/json/t-json.c index 0bd35b5e..26f870ce 100644 --- a/tests/json/t-json.c +++ b/tests/json/t-json.c @@ -261,9 +261,9 @@ run_test (const char *test, const char *gpgme_json) exit(1); } - gpgrt_asprintf (&test_in, "%s/tests/json/%s.in", + gpgrt_asprintf (&test_in, "%s/tests/json/%s.in.json", top_srcdir, test); - gpgrt_asprintf (&test_out, "%s/tests/json/%s.out", + gpgrt_asprintf (&test_out, "%s/tests/json/%s.out.json", top_srcdir, test); printf ("Running %s...\n", test);