Changeset 1608
- Timestamp:
- Jul 14, 2020, 2:40:18 AM (3 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/0.10-stable merged: 1597,1604-1607
- Property svn:mergeinfo changed
-
trunk/.release_year
r1564 r1608 1 20 151 2020 -
trunk/lib/SVNproperty.cc
r1515 r1608 4 4 Copyright (C) 2006 Jari Häkkinen 5 5 Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 6 Copyright (C) 2010, 2011, 2012 Peter Johansson6 Copyright (C) 2010, 2011, 2012, 2020 Peter Johansson 7 7 8 8 This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 98 98 std::string first; 99 99 getline(ss2, first, '-'); 100 bool found_dash = word.size()>first.size() && word[first.size()]=='-'; 100 101 trim(first); 101 102 std::string second; 102 bool found_dash =getline(ss2, second);103 getline(ss2, second); 103 104 trim(second); 104 105 yat::utility::Segment<svn_revnum_t> rev_interval; -
trunk/m4/version.m4
- Property svn:mergeinfo changed
/branches/0.10-stable/m4/version.m4 merged: 1597
- Property svn:mergeinfo changed
-
trunk/test/Makefile.am
r1599 r1608 83 83 84 84 ## graph test needs to link against Graph class 85 test_graph_test_LDADD = $(LDADD) lib/libsvndigest.a 85 test_graph_test_LDADD = test/libsvndigesttest.a \ 86 lib/libsvndigest.a lib/libsvndigest_core.a yat/libyat.a \ 87 $(SVN_LIBS) $(APR_LIBS) $(PLPLOT_LIBS) 86 88 87 89 test_libsvndigesttest_a_SOURCES = test/Suite.cc -
trunk/test/repo_status_test.sh
r1532 r1608 35 35 # check if the last test revision is a part of the svndigest repository 36 36 status_return=`$SVN status -v ${repo}/db/revs/$rev` 37 echo "status_return:$status_return" 37 38 # logic: (file does not exist) || (file exists but not in revision control) 38 if [[ ${#status_return} -eq 0 || ${status_return:0:1} = "?" ]]; then39 if test x"${status_return}" = x"" || echo "${status_return}" | $GREP -q '^?'; then 39 40 repository_status=0 40 41 echo "ERROR: test repository and svndigest repository are not synchronized:" … … 50 51 # repository is found, or break the test repository revision 0 is 51 52 # reached. 52 while [[ ${#status_return} -eq 0 || ${status_return:0:1} = "?" ]] && [ $rev -ge 0 ]; do53 while {test x"${status_return}" = x"" || echo "${status_return}" | $GREP -q '^?'} && test $rev -ge 0; do 53 54 echo "ERROR: svn add test/repo/db/revs/$rev test/repo/db/revprops/$rev" 54 55 let rev--
Note: See TracChangeset
for help on using the changeset viewer.