Move a pair of gobject tests to tests/gobject/
authorRyan Lortie <desrt@desrt.ca>
Thu, 30 May 2013 03:43:26 +0000 (23:43 -0400)
committerRyan Lortie <desrt@desrt.ca>
Sat, 1 Jun 2013 03:03:19 +0000 (23:03 -0400)
testgobject.c and timeloop-closure.c are the only two tests in the
toplevel tests/ directory that depend on gobject, so move them to
tests/gobject/ along with the other gobject tests.

Both of these were in noinst_PROGRAMS and not TESTS, so keep them that
way when we move them.

tests/Makefile.am
tests/gobject/Makefile.am
tests/gobject/testgobject.c [moved from tests/testgobject.c with 100% similarity]
tests/gobject/timeloop-closure.c [moved from tests/timeloop-closure.c with 100% similarity]

index 6f4b82e..5a342c5 100644 (file)
@@ -60,7 +60,7 @@ CXX_TEST =
 endif
 
 if ENABLE_TIMELOOP
-timeloop = timeloop timeloop-closure
+timeloop = timeloop
 endif
 noinst_PROGRAMS = $(TEST_PROGS)        \
        testgdate               \
@@ -69,8 +69,7 @@ noinst_PROGRAMS = $(TEST_PROGS)       \
        unicode-collate         \
        $(timeloop)             \
        assert-msg-test         \
-       datetime                \
-       testgobject
+       datetime
 
 TEST_PROGS             += testglib
 testglib_SOURCES         = testglib.c
@@ -84,10 +83,8 @@ unicode_collate_LDADD = $(libglib)
 assert_msg_test_LDADD = $(libglib)
 if ENABLE_TIMELOOP
 timeloop_LDADD = $(libglib)
-timeloop_closure_LDADD = $(libglib) $(libgobject)
 endif
 datetime_LDADD = $(libglib)
-testgobject_LDADD = $(libglib) $(libgobject)
 
 test_programs =                                        \
        atomic-test                             \
index 7748dd1..e58b158 100644 (file)
@@ -70,7 +70,11 @@ performance_programs =                               \
 performance_LDADD = $(libgobject) $(libgthread)
 performance_threaded_LDADD = $(libgobject) $(libgthread)
 check_PROGRAMS = $(test_programs)
-noinst_PROGRAMS = $(performance_programs)
+noinst_PROGRAMS = $(performance_programs) testgobject
+
+if ENABLE_TIMELOOP
+noinst_PROGRAMS += timeloop-closure
+endif
 
 TESTS = $(test_programs) $(performance_programs)
 TESTS_ENVIRONMENT = srcdir=$(srcdir) \