Blame SOURCES/duplicate-test-path.patch
|
|
3a7434 |
From ab41e2830d2f7540d58370b5f35f85c2808c1871 Mon Sep 17 00:00:00 2001
|
|
|
3a7434 |
From: Stef Walter <stefw@redhat.com>
|
|
|
3a7434 |
Date: Fri, 11 Sep 2015 12:32:36 +0200
|
|
|
3a7434 |
Subject: [PATCH] tests: Fix duplicate test case path
|
|
|
3a7434 |
|
|
|
3a7434 |
GLib is now stricter about this
|
|
|
3a7434 |
---
|
|
|
3a7434 |
tests/test-safe-format.c | 2 +-
|
|
|
3a7434 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
3a7434 |
|
|
|
3a7434 |
diff --git a/tests/test-safe-format.c b/tests/test-safe-format.c
|
|
|
3a7434 |
index 02aa5f1..204e10d 100644
|
|
|
3a7434 |
--- a/tests/test-safe-format.c
|
|
|
3a7434 |
+++ b/tests/test-safe-format.c
|
|
|
3a7434 |
@@ -194,7 +194,7 @@ main (int argc,
|
|
|
3a7434 |
else
|
|
|
3a7434 |
escaped = g_strdup (fixtures[i].format);
|
|
|
3a7434 |
g_strdelimit (escaped, " =\\/", '_');
|
|
|
3a7434 |
- name = g_strdup_printf ("/realmd/safe-format/%s", escaped);
|
|
|
3a7434 |
+ name = g_strdup_printf ("/realmd/safe-format/%d-%s", i, escaped);
|
|
|
3a7434 |
g_free (escaped);
|
|
|
3a7434 |
|
|
|
3a7434 |
g_test_add_data_func (name, fixtures + i, test_safe_format_string_cb);
|
|
|
3a7434 |
--
|
|
|
3a7434 |
2.4.3
|
|
|
3a7434 |
|