From 26950073d9c2b65c31f21c0f01cc2a6a78aa4e1b Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Mon, 2 Sep 2013 12:55:47 +0400 Subject: [PATCH] tests: Append _test suffix to 'initsecondarythread' binary file names * tests/tests.am (TESTS, check_PROGRAMS, initsecondarythread_SOURCES, initsecondarythread_LDADD): Rename initsecondarythread to initsecondarythread_test (except for .c file). * .gitignore: Likewise. --- .gitignore | 2 +- tests/tests.am | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index b9bfb19..af2e508 100644 --- a/.gitignore +++ b/.gitignore @@ -41,7 +41,7 @@ /hugetest /if_mach /if_not_there -/initsecondarythread +/initsecondarythread_test /leaktest /libtool /middletest diff --git a/tests/tests.am b/tests/tests.am index e6c98c4..28c64e2 100644 --- a/tests/tests.am +++ b/tests/tests.am @@ -86,10 +86,10 @@ check_PROGRAMS += subthread_create subthread_create_SOURCES = tests/subthread_create.c subthread_create_LDADD = $(test_ldadd) $(THREADDLLIBS) -TESTS += initsecondarythread$(EXEEXT) -check_PROGRAMS += initsecondarythread -initsecondarythread_SOURCES = tests/initsecondarythread.c -initsecondarythread_LDADD = $(test_ldadd) $(THREADDLLIBS) +TESTS += initsecondarythread_test$(EXEEXT) +check_PROGRAMS += initsecondarythread_test +initsecondarythread_test_SOURCES = tests/initsecondarythread.c +initsecondarythread_test_LDADD = $(test_ldadd) $(THREADDLLIBS) endif if CPLUSPLUS -- 2.7.4