source: trunk/test/Makefile.am @ 1328

Last change on this file since 1328 was 1328, checked in by Peter Johansson, 13 years ago

fixing deps for test log files

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.4 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 1328 2011-01-27 01:31:05Z peter $
4
5# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Jari Häkkinen, Peter Johansson
6# Copyright (C) 2011 Peter Johansson
7#
8# This file is part of svndigest, http://dev.thep.lu.se/svndigest
9#
10# svndigest is free software; you can redistribute it and/or modify it
11# under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 3 of the License, or
13# (at your option) any later version.
14#
15# svndigest is distributed in the hope that it will be useful, but
16# WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18# General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with svndigest. If not, see <http://www.gnu.org/licenses/>.
22
23check_SCRIPTS = svn_update.sh init.sh
24
25## we use suffix .cc for all source
26AM_DEFAULT_SOURCE_EXT = .cc
27
28EXTRA_PROGRAMS = cache_partial.test color.test \
29  config.test copyright.test date.test \
30  graph.test htmlstream.test \
31  parser.test option.test stats.test svn_diff.test trac.test utility.test \
32  vector.test
33
34CLEANFILES = $(EXTRA_PROGRAMS)
35
36option_test_SOURCES = option.cc $(top_srcdir)/bin/Parameter.cc \
37  $(top_srcdir)/bin/AbstractParameter.cc $(top_srcdir)/bin/svndigestParameter.cc
38
39distributed_TESTS =
40distributed_TESTS += cmd_format_test.sh
41distributed_TESTS += config2_test.sh
42distributed_TESTS += config3_test.sh
43distributed_TESTS += copyright2_test.sh
44distributed_TESTS += error_test.sh
45distributed_TESTS += link_root_test.sh
46distributed_TESTS += repo_status_test.sh
47distributed_TESTS += repo_test.sh
48distributed_TESTS += svncopyright_test.sh
49distributed_TESTS += svndigest_copy_cache_test.sh
50
51TESTS = $(EXTRA_PROGRAMS) $(distributed_TESTS)
52
53TEST_EXTENSIONS = .sh .test
54
55EXTRA_DIST = $(distributed_TESTS)
56
57# tests not yet passing are listed here
58XFAIL_TESTS =
59
60noinst_HEADERS = Suite.h
61
62check_LIBRARIES = libsvndigesttest.a
63
64LDADD = $(builddir)/libsvndigesttest.a \
65  $(top_builddir)/lib/libsvndigest_core.a \
66  $(top_builddir)/yat/libyat.a \
67  $(SVN_LIBS) $(APR_LIBS) $(PLPLOT_LIBS)
68
69## graph test needs to link against Graph class
70graph_test_LDADD = $(LDADD) $(top_builddir)/lib/libsvndigest.a
71
72AM_LDFLAGS = $(SVNDIGEST_LDFLAGS)
73
74AM_CPPFLAGS = -I$(top_srcdir) $(SVNDIGEST_CPPFLAGS)
75AM_CXXFLAGS = $(SVNDIGEST_CXXFLAGS)
76
77libsvndigesttest_a_SOURCES = Suite.cc
78
79clean-local:
80  rm -rf generated_output toy_project testSubDir
81
82mostlyclean-local:
83  rm -f *.png *.tmp *~
84
85.PHONY: lazycheck
86
87lazycheck:; $(MAKE) $(AM_MAKEFLAGS) check RECHECK_LOGS=
88
89if HAVE_SVN_WC
90repo_stamp = $(srcdir)/repo/db/current
91else
92repo_stamp =
93endif
94
95# dependencies for lazycheck
96cmd_format_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) $(repo_stamp)
97config2_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) $(repo_stamp)
98config3_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT)
99copyright2_test.log:init.sh $(top_builddir)/bin/svncopyright$(EXEEXT) $(repo_stamp)
100link_root_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) $(repo_stamp)
101repo_status_test.log:init.sh
102repo_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) $(repo_stamp)
103svncopyright_test.log:init.sh $(top_builddir)/bin/svncopyright$(EXEEXT)
104svndigest_copy_cache_test.log:init.sh $(top_builddir)/bin/svndigest-copy-cache $(repo_stamp)
105
106cache_partial.log: $(repo_stamp)
107copyright.log: $(repo_stamp)
108stats.log: $(repo_stamp)
109
Note: See TracBrowser for help on using the repository browser.