source: trunk/test/Makefile.am @ 1266

Last change on this file since 1266 was 1266, checked in by Peter Johansson, 12 years ago

fixes #484, and shaped test copyright2_test.sh to test for this. Also changed name of test to option.test to avoid conflict between object files on case insensitive file systems.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.2 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 1266 2010-11-02 03:39:22Z peter $
4
5# Copyright (C) 2005, 2006, 2007, 2008, 2009 Jari Häkkinen, Peter Johansson
6# Copyright (C) 2010 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/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.a \
66  $(top_builddir)/yat/libyat.a \
67  $(SVN_LIBS) $(APR_LIBS) $(PLPLOT_LIBS)
68AM_LDFLAGS = $(SVNDIGEST_LDFLAGS)
69
70AM_CPPFLAGS = -I$(top_srcdir) $(SVNDIGEST_CPPFLAGS)
71AM_CXXFLAGS = $(SVNDIGEST_CXXFLAGS)
72
73libsvndigesttest_a_SOURCES = Suite.cc
74
75clean-local:
76  rm -rf generated_output toy_project testSubDir
77
78mostlyclean-local:
79  rm -f *.png *.tmp *~
80
81.PHONY: lazycheck
82
83lazycheck:; $(MAKE) $(AM_MAKEFLAGS) check RECHECK_LOGS=
84
85repo_stamp = $(srcdir)/repo/db/current
86
87# dependencies for lazycheck
88cmd_format_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) $(repo_stamp)
89config2_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) $(repo_stamp)
90config3_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT)
91copyright2_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) $(repo_stamp)
92repo_status_test.log:init.sh
93repo_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) $(repo_stamp)
94svncopyright_test.log:init.sh $(top_builddir)/bin/svncopyright$(EXEEXT)
95svndigest_copy_cache_test.log:init.sh $(top_builddir)/bin/svndigest-copy-cache $(repo_stamp)
96
97cache_partial.log: $(repo_stamp) $(srcdir)/data/AUTHORS.svndigest-cache-r61
98copyright.log: $(repo_stamp)
99stats.log: $(repo_stamp)
100
Note: See TracBrowser for help on using the repository browser.