Changeset 1055
- Timestamp:
- Apr 21, 2010, 5:16:54 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/Makefile.am
r978 r1055 5 5 # Copyright (C) 2005 Jari Häkkinen 6 6 # Copyright (C) 2006, 2007, 2008, 2009 Jari Häkkinen, Peter Johansson 7 # Copyright (C) 2010 Peter Johansson 7 8 # 8 9 # This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 21 22 # along with svndigest. If not, see <http://www.gnu.org/licenses/>. 22 23 23 bin_PROGRAMS = svndigest 24 bin_PROGRAMS = svndigest svncopyright 24 25 25 26 svndigest_SOURCES = Parameter.cc svndigest.cc 27 svncopyright_SOURCES = Parameter.cc svncopyright.cc 26 28 27 29 noinst_HEADERS = Parameter.h -
trunk/test/Makefile.am
r1049 r1055 39 39 distributed_TESTS += repo_status_test.sh 40 40 distributed_TESTS += repo_test.sh 41 distributed_TESTS += svncopyright_test.sh 41 42 distributed_TESTS += svndigest_copy_cache_test.sh 42 43 … … 83 84 repo_status_test.log:init.sh 84 85 repo_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) 86 svncopyright_test.log:init.sh $(top_builddir)/bin/svncopyright$(EXEEXT) 85 87 svndigest_copy_cache_test.log:init.sh $(top_builddir)/bin/svndigest-copy-cache 86 88 -
trunk/test/svncopyright_test.sh
r1054 r1055 2 2 # $Id$ 3 3 # 4 # Copyright (C) 2009 Peter Johansson4 # Copyright (C) 2009, 2010 Peter Johansson 5 5 # 6 6 # This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 19 19 # along with svndigest. If not, see <http://www.gnu.org/licenses/>. 20 20 21 required=" repo"21 required="" 22 22 23 23 . ./init.sh || exit 1 … … 25 25 26 26 for opt in --version --help; do 27 ../bin/svn digest-copy-cache$opt > out.tmp 2> error.tmp27 ../bin/svncopyright $opt > out.tmp 2> error.tmp 28 28 test -n "`cat out.tmp`" || exit_fail 29 29 test -z "`cat error.tmp`" || exit_fail … … 31 31 done 32 32 33 pristine=$abs_builddir/.toy_project234 rm -rf $pristine35 $SVN co ${repo_url}/trunk $pristine36 $abs_top_builddir/bin/svndigest-copy-cache -v -r $rootdir -t $pristine37 38 rm -rf $pristine39 33 exit_success
Note: See TracChangeset
for help on using the changeset viewer.