From f96dc555d5b56aa56ad1d77bb3fde685ca612e68 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 16 May 2011 14:38:45 -0400 Subject: [PATCH] Rename a problematic test binary Having a binary called printf is apparently asking for trouble, so lets not do that. http://bugzilla.gnome.org/show_bug.cgi?id=650078 --- glib/tests/Makefile.am | 6 +++--- glib/tests/{printf.c => test-printf.c} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename glib/tests/{printf.c => test-printf.c} (100%) diff --git a/glib/tests/Makefile.am b/glib/tests/Makefile.am index 4c8008486..2dd37e5a7 100644 --- a/glib/tests/Makefile.am +++ b/glib/tests/Makefile.am @@ -29,9 +29,9 @@ TEST_PROGS += fileutils fileutils_SOURCES = fileutils.c fileutils_LDADD = $(progs_ldadd) -TEST_PROGS += printf -printf_SOURCES = printf.c -printf_LDADD = $(progs_ldadd) -lm +TEST_PROGS += test-printf +test_printf_SOURCES = test-printf.c +test_printf_LDADD = $(progs_ldadd) -lm TEST_PROGS += protocol protocol_SOURCES = protocol.c diff --git a/glib/tests/printf.c b/glib/tests/test-printf.c similarity index 100% rename from glib/tests/printf.c rename to glib/tests/test-printf.c