[gnome-scan] Prefix test runners with test_



commit d843743c4acddbbeb18520adb063b73c4cf8d1fd
Author: Ã?tienne BERSAC <etienne bersac corp nerim net>
Date:   Fri Oct 29 15:16:00 2010 +0200

    Prefix test runners with test_

 .gitignore            |    1 +
 lib/tests/Makefile.am |   18 +++++++++---------
 2 files changed, 10 insertions(+), 9 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index eee7322..2231296 100644
--- a/.gitignore
+++ b/.gitignore
@@ -47,3 +47,4 @@ doc/ref/version.xml
 
 # targets
 flegita*
+lib/tests/test_*
diff --git a/lib/tests/Makefile.am b/lib/tests/Makefile.am
index 2c5d857..ed0e883 100644
--- a/lib/tests/Makefile.am
+++ b/lib/tests/Makefile.am
@@ -11,14 +11,14 @@ AM_CFLAGS = -Wall -g
 
 noinst_PROGRAMS = $(TEST_PROGS)
 
-TEST_PROGS	+= common
-common_SOURCES	 = common.c
-common_LDADD	 = $(LIBS)
+TEST_PROGS		+= test_common
+test_common_SOURCES	 = common.c
+test_common_LDADD	 = $(LIBS)
 
-TEST_PROGS	+= options
-options_SOURCES	 = options.c
-options_LDADD	 = $(LIBS)
+TEST_PROGS		+= test_options
+test_options_SOURCES	 = options.c
+test_options_LDADD	 = $(LIBS)
 
-TEST_PROGS	+= module
-module_SOURCES	 = module.c
-module_LDADD	 = $(LIBS)
\ No newline at end of file
+TEST_PROGS		+= test_module
+test_module_SOURCES	 = module.c
+test_module_LDADD	 = $(LIBS)
\ No newline at end of file



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]