summaryrefslogtreecommitdiff
path: root/egg
diff options
context:
space:
mode:
authorDmitry Shachnev <mitya57@ubuntu.com>2015-09-30 14:46:44 +0300
committerStef Walter <stefw@gnome.org>2015-10-01 17:50:08 +0200
commitcc0d05adb11f1bcbc9a8be33a29a34cd20a9a57f (patch)
treeb40c080ab0c3a49f4caa1b8558468bd8e4c7bb5b /egg
parent3c424be597a2e4164348bc087882a7ed376df163 (diff)
downloadgnome-keyring-cc0d05adb11f1bcbc9a8be33a29a34cd20a9a57f.tar.gz
egg: Make sure names for encode-decode tests are different
https://bugzilla.gnome.org/show_bug.cgi?id=755873
Diffstat (limited to 'egg')
-rw-r--r--egg/test-asn1x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/egg/test-asn1x.c b/egg/test-asn1x.c
index fd347e21..f41c630c 100644
--- a/egg/test-asn1x.c
+++ b/egg/test-asn1x.c
@@ -186,7 +186,7 @@ main (int argc, char **argv)
g_test_init (&argc, &argv, NULL);
for (i = 0; i < G_N_ELEMENTS (parse_test_fixtures); i++) {
- name = g_strdup_printf ("/asn1x/encode-decode-%s", parse_test_fixtures[i].identifier);
+ name = g_strdup_printf ("/asn1x/encode-decode-%d-%s", i, parse_test_fixtures[i].identifier);
g_test_add (name, Test, &parse_test_fixtures[i], setup_parsing, test_decode_encode, teardown);
g_free (name);
}