pysvn-1.8.0/ 000755 000771 000771 00000000000 12576566126 012163 5 ustar 00barry 000000 000000 pysvn-1.8.0/Builder/ 000755 000771 000771 00000000000 12576566125 013550 5 ustar 00barry 000000 000000 pysvn-1.8.0/Docs/ 000755 000771 000771 00000000000 12576566126 013053 5 ustar 00barry 000000 000000 pysvn-1.8.0/Examples/ 000755 000771 000771 00000000000 12576566126 013741 5 ustar 00barry 000000 000000 pysvn-1.8.0/Import/ 000755 000771 000771 00000000000 12576566126 013435 5 ustar 00barry 000000 000000 pysvn-1.8.0/INSTALL.html 000644 000771 000771 00000007027 12204114361 014137 0 ustar 00barry 000000 000000
Building pysvn Extension
Building pysvn Extension
Prerequisites
To build pysvn you will require:
- Python 2.6 or later with these options:
- Python runtime package
- Python development package
- Python pyexpat package
- subversion 1.7.x or 1.8.x with these options:
- Subversion client package
- Subversion development package
- PyCXX V6.2.4 to build against Python 2 or Python 3 which is included in the pysvn source kit.
Some distributions will split python and subversion into more the one package.
You will need to find all the packages that give you the options listed above.
Building on win32
PYSVN sources have been updated to build on Windows 7 64bit version.
Expect issues on older windows and 32but windows.
These instructions assume you have Microsoft Visual C++ 2008 (9.0) to compile the code
and INNO 5 to create the installation kit.
You must build with MSVC 2008 (9.0) for Python 2.6 or later and python 3.0 or later.
- Build subversion (tested with and svn 1.7.11 and 1.8.1)
- Fetch and expand the pysvn source code into extdir
- Expand pycxx-6.2.4.tar.gz into extdir\Import if not using a source kit
- Edit Builder\builder_custom_init.cmd to match the locations of the sources.
cd Builder
builder_custom_init.cmd
cd ..\Source
python setup.py configure ...
(add any configure options required to make it find the required libraries).
nmake
cd ..\Test
nmake
cd ..\Kit\Win32-1.7
nmake
To install the built kit
- Uninstall any previous kit (control panel's Add/Remove programs)
nmake -f win32.mak install
Building on unix and Mac OS X systems.
- Install subversion.
When installing from packages you will need to install the devel packages as well. For example on Fedora/Redhat subversion-devel, apr-devel, apr-util-devel and their dependancies.
- Get the pysvn source code
- For Python 2 or Python 3 builds:
tar xzf pycxx-6.2.4.tar.gz
into extdir/Import if not using a source kit
cd Source
- For Python 2.6 or earlier builds: backport the PySVN code using
python setup.py backport
- Create the Makefile using
python setup.py configure
make
cd Tests
- Test pysvn by running
make
Install pysvn by copying the following from Extension/Source
to python site-specific directory.
mkdir python-libdir/site-packages/pysvn
cp pysvn/__init__.py python-libdir/site-packages/pysvn
cp pysvn/_pysvn*.so python-libdir/site-packages/pysvn
pysvn-1.8.0/Kit/ 000755 000771 000771 00000000000 12576566126 012712 5 ustar 00barry 000000 000000 pysvn-1.8.0/LICENSE.txt 000644 000771 000771 00000004315 11724430522 013771 0 ustar 00barry 000000 000000 =================================================================
Copyright (C) 2003-2012 Barry A. Scott. All rights reserved.
=================================================================
The Apache Software License, Version 1.1
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
3. The end-user documentation included with the redistribution,
if any, must include the following acknowledgment:
"This product includes software developed by
Barry A. Scott http://www.barrys-emacs.org."
Alternately, this acknowledgment may appear in the software itself,
if and wherever such third-party acknowledgments normally appear.
4. The names "PySVN" must not be used to endorse or promote
products derived from this software without prior written
permission. For written permission, please contact
barry@barrys-emacs.org.
5. Products derived from this software may not be called "PySVN",
nor may "PySVN" appear in their name, without prior written
permission of Barry Scott.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
=================================================================
pysvn-1.8.0/Patches/ 000755 000771 000771 00000000000 12576566125 013551 5 ustar 00barry 000000 000000 pysvn-1.8.0/setup.cfg 000644 000771 000771 00000000014 11411352312 013750 0 ustar 00barry 000000 000000 [egg_info]
pysvn-1.8.0/setup.py 000644 000771 000771 00000003777 11507075213 013674 0 ustar 00barry 000000 000000 #
# ====================================================================
# (c) 2005-2009 Barry A Scott. All rights reserved.
#
# This software is licensed as described in the file LICENSE.txt,
# which you should have received as part of this distribution.
#
# ====================================================================
#
#
# setup.py
#
# make an egg of pysvn
#
import setuptools
import distutils.sysconfig
import sys
import os
import os.path
import setuptools.command.bdist_egg
pysvn_version_info = {}
f = open( 'Builder/version.info', 'r' )
for line in f:
key, value = line.strip().split('=')
pysvn_version_info[ key ] = value
def run(self):
# Generate metadata first
self.run_command("egg_info")
os.chdir('Source')
os.system(sys.executable + ' setup.py configure')
os.system('make clean')
os.system('make')
os.system('make egg DISTDIR="%s"' % os.path.abspath(os.path.join('..', self.dist_dir)))
os.chdir('..') # Go back in parent directory
# Add to 'Distribution.dist_files' so that the "upload" command works
getattr( self.distribution, 'dist_files', [] ).append(
('bdist_egg', distutils.sysconfig.get_python_version(), self.egg_output) )
# Monkey patch the building method with our custom one.
setuptools.command.bdist_egg.bdist_egg.run = run
name = "pysvn"
setuptools.setup(
name = name,
version='%(MAJOR)s.%(MINOR)s.%(PATCH)s' % pysvn_version_info,
author="Barry Scott",
author_email="barryscott@tigris.org",
description="Subversion support for Python",
long_description="",
url="http://pysvn.tigris.org/",
license="Apache Software License",
keywords="subversion",
ext_modules = [
setuptools.Extension(
'_pysvn', []) # This used to tell setuptools that
# there is native extension, but
# they're not build using setuptools.
],
classifiers=[
"Topic :: Software Development :: Version Control",
],
)
pysvn-1.8.0/Source/ 000755 000771 000771 00000000000 12576566123 013420 5 ustar 00barry 000000 000000 pysvn-1.8.0/Tests/ 000755 000771 000771 00000000000 12576566125 013264 5 ustar 00barry 000000 000000 pysvn-1.8.0/Tests/benchmark_diff.py 000644 000771 000771 00000022356 12565041475 016562 0 ustar 00barry 000000 000000 '''
====================================================================
Copyright (c) 2005-2011 Barry A Scott. All rights reserved.
This software is licensed as described in the file LICENSE.txt,
which you should have received as part of this distribution.
====================================================================
'''
import sys
import os
import re
import pprint
import difflib
_debug = False
class LiteralMatch:
def __init__( self, start, end ):
self.start_pos = start
self.end_pos = end
def start( self ):
return self.start_pos
def end( self ):
return self.end_pos
class LiteralSearch:
def __init__( self, substring ):
self.substring = substring
def search( self, line ):
try:
start_pos = line.index( self.substring )
end_pos = start_pos + len(self.substring)
return LiteralMatch( start_pos, end_pos )
except ValueError:
return None
class LiteralCaseBlindSearch:
def __init__( self, substring ):
self.substring = substring.lower()
def search( self, line ):
try:
start_pos = line.lower().index( self.substring )
end_pos = start_pos + len(self.substring)
return LiteralMatch( start_pos, end_pos )
except ValueError:
return None
class ReplaceDirtInString:
def __init__( self, lines_list, svn_version ):
self.lines_list = lines_list
self.workdir = self.find( 'WorkDir' )
self.python = self.find( 'PYTHON' )
self.username = self.find( 'Username' )
self.svn_version = svn_version
self.txn_client_replacement = None
if self.svn_version[0] > 1 or (self.svn_version[0] == 1 and self.svn_version[1] >= 8):
self.txn_client_replacement = 'svn:txn-client-compat-version: %d.%d.%d' % self.svn_version
self.txn_agent_replacement = None
if self.svn_version[0] > 1 or (self.svn_version[0] == 1 and self.svn_version[1] >= 9):
self.txn_agent_replacement = 'svn:txn-user-agent: SVN/%d.%d.%d (arch-os-string) ra_local' % self.svn_version
# ------------------------------------------------------------------------
# Version strings:
# Date/Timestamps:
# 2001-03-27-15-36-10
# 19-Mar-01 14:52:12
# Jan 20 14:35
# Jan 20 2004
# UUID:
# 467a5469-d6df-e448-9de8-282096145563
# Directory path:
# Drawn from TestRoot: xxxx
# Username, Hostname:
# Drawn from Username: xxx & Hostname: xxx
#
dateAlphaNumeric_re = re.compile(r'\d+-[JFMASOND][a-z][a-z]-\d+ [ 0-9]\d:\d\d:\d\d')
dateNumeric_re = re.compile(r'\d\d\d\d-\d\d-\d\dT\d\d:\d\d:\d\d(.\d+)?Z?')
dateUnixLs1_re = re.compile(r'[JFMASOND][a-z][a-z] \d+ \d\d:\d\d')
dateUnixLs2_re = re.compile(r'[JFMASOND][a-z][a-z] \d\d\d\d')
uuid_re = re.compile(r'[0-9a-z]{8}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{12}')
pristine_re = re.compile( r'pristine[/\\][0-9a-z]{2}[/\\][0-9a-z]{40}' )
checksum_re = re.compile(r'[0-9a-z]{32}')
tmpSvnFile_re = re.compile(r'[/\\].svn[/\\]tmp[/\\]tempfile.\d+.tmp|[/\\].svn[/\\]tmp[/\\]svn-[a-zA-Z0-9]+')
self.replacement_list = [
(pristine_re, 'pristine/'),
(dateAlphaNumeric_re, ''),
(dateNumeric_re, ''),
(uuid_re, ''),
(checksum_re, ''),
(dateUnixLs1_re, ''),
(dateUnixLs2_re, ''),
(tmpSvnFile_re, '/.svn/tmp/'),
]
if self.workdir:
workdir_re1 = LiteralCaseBlindSearch( self.workdir )
workdir_re2 = LiteralCaseBlindSearch( os.path.realpath( self.workdir ) )
self.replacement_list.append(
(workdir_re1, '') )
self.replacement_list.append(
(workdir_re2, '') )
if self.python:
python_re = LiteralCaseBlindSearch( self.python )
self.replacement_list.append(
(python_re, '') )
if True:
# must replace username after workdir
username_spaces_re = re.compile( r'\b'+self.username+' * ' )
self.replacement_list.append(
(username_spaces_re, ' ') )
username_re = re.compile( r': %s\b' % self.username )
self.replacement_list.append( (username_re, ': ') )
username_re = LiteralSearch( '| %s |' % self.username )
self.replacement_list.append( (username_re, '| |') )
def find( self, keyword ):
for line in self.lines_list:
parts = line.split( ':' )
if parts[0] == keyword:
value = (':'.join( parts[1:] ) ).strip()
if _debug: print( 'Debug: find( %s ) -> %s' % (keyword, value) )
return value
return ''
def execute( self ):
return [self.replace( line ) for line in self.lines_list]
def replace( self, line ):
if _debug: print( 'Debug: Processing: %r' % (line,) )
for re_expr, replacement_text in self.replacement_list:
while 1:
if _debug: print( 'Debug: ...trying: %r' % (replacement_text,) )
match = re_expr.search( line )
if match == None:
break
line = line[0:match.start()] + replacement_text + line[match.end():]
if _debug: print( 'Debug: ...update line: %r' % (line,) )
if( self.txn_client_replacement is not None
and line.startswith( 'svn:txn-client-compat-version: ' ) ):
line = self.txn_client_replacement
if _debug: print( 'Debug: ...update line: %r' % (line,) )
if( self.txn_agent_replacement is not None
and line.startswith( 'svn:txn-user-agent: ' ) ):
line = self.txn_agent_replacement
if _debug: print( 'Debug: ...update line: %r' % (line,) )
return line
def stripDirty( filename, svn_version ):
f = open(filename, 'r')
contents = f.read()
f.close()
if _debug: print( 'Debug: Debug: stripDirty( %r, %r )' % (filename, svn_version) )
lines = contents.replace( '\r\n', '\n' ).replace( '\r', '\n' ).split( '\n' )
replace = ReplaceDirtInString( lines, svn_version )
stripped_lines = replace.execute()
if _debug: print( 'Debug: Debug: stripDirty Done.' )
return stripped_lines
# ------------------------------------------------------------------------
# main
def main( argv ):
try:
svn_version = tuple( [int(x) for x in argv[1].split('.')] )
benchmark_file = argv[2]
results_file = argv[3]
print( 'Info: SVN Version %d.%d.%d' % svn_version )
print( 'Info: Comparing %s' % benchmark_file )
benchmark = stripDirty( benchmark_file, svn_version )
if _debug:
print( 'Debug: benchmark after we called stripDirty' )
pprint.pprint( benchmark )
print( 'Info: Against %s' % results_file )
results = stripDirty( results_file, svn_version )
if _debug:
print( 'Debug: results after we called stripDirty' )
pprint.pprint( results )
f = open( results_file + '.clean', 'w' )
for line in results:
f.write( line + '\n' )
f.close()
f = open( benchmark_file + '.clean', 'w' )
for line in benchmark:
f.write( line + '\n' )
f.close()
if results != benchmark:
print( 'Error: Test failed - %s' % results_file )
sm = difflib.SequenceMatcher()
sm.set_seq1( benchmark )
sm.set_seq2( results )
opcodes = sm.get_opcodes()
for tag, i1, i2, j1, j2 in opcodes:
if tag in ['delete','insert','replace']:
print( 'Error: --------------------------------------------------------------------------------' )
if tag in ['delete','replace']:
for line_index in range(i1,i2):
prefix = 'Benchmark(%d) %7s' % (line_index+1, tag)
print( 'Error: %26s %s' % (prefix, benchmark[line_index]) )
if tag in ['insert','replace']:
for line_index in range(j1,j2):
prefix = 'Result(%d) %7s' % (line_index+1, tag)
print( 'Error: %26s %s' % (prefix, results[line_index]) )
print( 'Error: --------------------------------------------------------------------------------' )
return 1
else:
print( 'Info: Test succeeded' )
return 0
except IOError as e:
print( 'Error: %s' % e )
return 2
# ------------------------------------------------------------------------
if __name__ == "__main__":
sys.exit( main( sys.argv ) )
pysvn-1.8.0/Tests/find.py 000644 000771 000771 00000001130 11615325744 014542 0 ustar 00barry 000000 000000 #
# find.py
#
# It turns out that Mac OS X and linux sort do not use the same
# ordering. Python allows for a portable and reliable.
#
import os
import sys
all_files = []
def walk( dirname, all_files ):
for filename in os.listdir( dirname ):
if filename not in ['.svn']:
filename = os.path.join( dirname, filename )
if os.path.isdir( filename ):
walk( filename, all_files )
else:
all_files.append( filename )
walk( sys.argv[1], all_files )
all_files.sort()
for filename in all_files:
print( filename )
pysvn-1.8.0/Tests/run_test.cmd 000644 000771 000771 00000000154 12573331527 015605 0 ustar 00barry 000000 000000 nmake -f win32.mak SVN_VER_MAJ_MIN=%SVN_VER_MAJ_MIN% KNOWN_GOOD_VERSION=py%PY_MAJ%-svn%SVN_VER_MAJ_MIN% %*
pysvn-1.8.0/Tests/svn_min_version.py 000644 000771 000771 00000001040 11076210000 017013 0 ustar 00barry 000000 000000 import pysvn
import sys
def main(argv):
print( 'Info: Checking for min version: %s against SVN version %s' % ('.'.join(argv[1:]), pysvn.svn_version) )
for index in range(1,len(argv)):
if pysvn.svn_version[ index-1 ] > int( argv[ index ] ):
break
if pysvn.svn_version[ index-1 ] < int( argv[ index ] ):
print( 'Warning: SVN version is not new enough' )
return 1
print( 'Info: SVN version is new enough' )
return 0
if __name__ == '__main__':
sys.exit( main( sys.argv ) )
pysvn-1.8.0/Tests/test-01.cmd 000644 000771 000771 00000021314 12573331527 015140 0 ustar 00barry 000000 000000 @echo off
@prompt $P$S$G
@echo WorkDir: %BUILDER_TOP_DIR%
@echo PYTHON: %PYTHON%
@echo Username: %USERNAME%
setlocal
set PYTHONPATH=%BUILDER_TOP_DIR%\Source;%BUILDER_TOP_DIR%\Examples\Client
set PYSVN=%PYTHON% %BUILDER_TOP_DIR%\Examples\Client\svn_cmd.py --pysvn-testing 01.01.00 --config-dir b:\configdir
echo Info: PYSVN CMD %PYSVN%
call :cmd_shell mkdir testroot-01
call :cmd_shell subst b: %CD%\testroot-01
call :cmd_shell cd /d b:\
call :cmd_shell svnadmin create b:\repos
echo Info: Test - mkdir
call :cmd_pysvn mkdir file:///b:/repos/trunk -m "test-01 add trunk"
call :cmd_pysvn mkdir file:///b:/repos/trunk/test -m "test-01 add test"
echo Info: Test - ls
call :cmd_pysvn ls file:///b:/repos -v -R
echo Info: Test - checkout
call :cmd_pysvn checkout file:///b:/repos/trunk b:\wc1
call :cmd_shell dir b:\wc1 /s /b /a-h
call :cmd_shell cd /d b:\wc1\test
echo Info: Test - add
call :cmd_createfile file1.txt test add file 1
call :cmd_createfile file2.txt test add file 2
call :cmd_createfile file3.txt test add file 3
call :cmd_createfile file4.txt test add file 4
call :cmd_createfile file5.txt test add file 5
call :cmd_shell mkdir folder1
call :cmd_createfile folder1\file7.txt test add file 7
call :cmd_shell mkdir folder1\folder2
call :cmd_createfile folder1\folder2\file8.txt test add file 8
call :cmd_shell mkdir folder3
call :cmd_createfile folder3\file9.txt test add file 9
call :cmd_shell mkdir folder3\folder4
call :cmd_createfile folder3\folder4\file10.txt test add file 10
call :cmd_pysvn add file1.txt
call :cmd_pysvn add file2.txt
call :cmd_pysvn add file3.txt
call :cmd_pysvn add file4.txt
call :cmd_pysvn add --force file5.txt
call :cmd_pysvn add folder1
call :cmd_pysvn add --non-recursive folder3
call :cmd_pysvn checkin -m "commit added files"
echo Info: Test - update - get a new wc that will update
call :cmd_pysvn checkout file:///b:/repos/trunk b:\wc2
echo Info: Test - - checkin a mod from wc1
call :cmd_appendfile b:\wc1\test\file1.txt line 2
call :cmd_pysvn checkin -m "commit modified file"
call :cmd_pysvn checkin -m "commit modified file"
echo Info: Test - update
call :cmd_pysvn update b:\wc2
echo Info: Test - the rest in lexical order
echo Info: Test - annotate
call :cmd_pysvn annotate b:\wc2\test\file1.txt
echo Info: Test - cat
call :cmd_pysvn cat -r head file:///b:/repos/trunk/test/file1.txt
echo Info: Test - cleanup
echo Info: Test - copy
call :cmd_pysvn mkdir file:///b:/repos/tags -m "test-01 add tags"
call :cmd_createfile msg.tmp tag the trunk
call :cmd_pysvn copy file:///b:/repos/trunk file:///b:/repos/tags/version1 %FILENAME%
goto :eof
:cmd_appendfile
set FILENAME=%1
shift
echo Info: Append File %FILENAME% - %1 %2 %3 %4 %5 %6 %7 %8 %9
call :cmd__echo %1 %2 %3 %4 %5 %6 %7 %8 %9 >>%FILENAME%
goto :eof
:cmd__echo
echo %*
goto :eof
pysvn-1.8.0/Tests/test-01.sh 000755 000771 000771 00000021075 11507354105 015007 0 ustar 00barry 000000 000000 #!/bin/sh
# need to get rid of any symbolic links in the WORKDIR
export WORKDIR=$( ${PYTHON} -c 'import os;os.chdir("..");print( os.getcwd() )' )
cd ${WORKDIR}/Tests
echo WorkDir: ${WORKDIR}
echo PYTHON: ${PYTHON}
echo Username: $(id -u -n)
cmd () {
echo Info: CWD: $(pwd)
echo Info: Command: $*
"$@"
}
cmd_pysvn () {
echo Info: CWD: $(pwd)
echo Info: pysvn command: $*
${PYSVN} "$@"
}
cmd mkdir testroot-01
cmd cd testroot-01
TESTROOT=${WORKDIR}/Tests/testroot-01
cmd mkdir tmp
export TMPDIR=${TESTROOT}/tmp
export PYTHONPATH=${WORKDIR}/Source:${WORKDIR}/Examples/Client
export PYSVN="${PYTHON} ${WORKDIR}/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir ${TESTROOT}/configdir"
echo Info: PYSVN command ${PYSVN}
cmd svnadmin create ${TESTROOT}/repos
echo Info: Testing - mkdir
cmd_pysvn mkdir file://${TESTROOT}/repos/trunk -m "test-01 add trunk"
cmd_pysvn mkdir file://${TESTROOT}/repos/trunk/test -m "test-01 add test"
echo Info: Testing - ls
cmd_pysvn ls file://${TESTROOT}/repos -v -R
echo Info: Testing - checkout
cmd_pysvn checkout file://${TESTROOT}/repos/trunk ${TESTROOT}/wc1
cmd ${PYTHON} ${WORKDIR}/Tests/find.py ${TESTROOT}/wc1
cmd cd ${TESTROOT}/wc1/test
echo Info: Testing - add
echo test add file 1 >file1.txt
echo test add file 2 >file2.txt
echo test add file 3 >file3.txt
echo test add file 4 >file4.txt
echo test add file 5 >file5.txt
echo test add file 6 >file6.txt
mkdir folder1
echo test add file 7 >folder1/file7.txt
mkdir folder1/folder2
echo test add file 8 >folder1/folder2/file8.txt
mkdir folder3
echo test add file 9 >folder3/file9.txt
mkdir folder3/folder4
echo test add file 10 >folder3/folder4/file10.txt
cmd_pysvn add file1.txt
cmd_pysvn add file2.txt
cmd_pysvn add file3.txt
cmd_pysvn add file4.txt
cmd_pysvn add --force file5.txt
cmd_pysvn add file6.txt
cmd_pysvn add folder1
cmd_pysvn add --non-recursive folder3
cmd_pysvn checkin -m "commit added files"
echo Info: Setup to test access to deleted files
echo test mod file 6 >>file6.txt
cmd_pysvn checkin -m "commit mod file"
cmd_pysvn rm file6.txt
cmd_pysvn checkin -m "commit delete file"
echo Info: Testing - update - get a new wc that will update
cmd_pysvn checkout file://${TESTROOT}/repos/trunk ${TESTROOT}/wc2
echo Info: Testing - - checkin a mod from wc1
echo line 2 >>${TESTROOT}/wc1/test/file1.txt
cmd_pysvn checkin -m "commit modified file"
echo Info: Testing - update
cmd_pysvn update ${TESTROOT}/wc2
echo Info: Testing - the rest in lexical order
echo Info: Testing - annotate
cmd_pysvn annotate ${TESTROOT}/wc2/test/file1.txt
cmd_pysvn annotate -r 3:4 file://${TESTROOT}/repos/trunk/test/file6.txt
echo Info: Testing - cat
cmd_pysvn cat -r head file://${TESTROOT}/repos/trunk/test/file1.txt
cmd_pysvn cat -r 4 file://${TESTROOT}/repos/trunk/test/file6.txt
echo Info: Testing - cleanup
echo Info: Testing - copy
cmd_pysvn mkdir file://${TESTROOT}/repos/tags -m "test-01 add tags"
echo tag the trunk >msg.tmp
cmd_pysvn copy file://${TESTROOT}/repos/trunk file://${TESTROOT}/repos/tags/version1 >${TESTROOT}/wc2/test/file1b.txt
cmd_pysvn diff ${TESTROOT}/wc2
echo Info: Testing - export
cmd_pysvn export file://${TESTROOT}/repos/trunk/test ${TESTROOT}/export1.native
cmd_pysvn export --native-eol CR file://${TESTROOT}/repos/trunk/test ${TESTROOT}/export1.cr
cmd_pysvn export --native-eol LF file://${TESTROOT}/repos/trunk/test ${TESTROOT}/export1.lf
cmd_pysvn export --native-eol CRLF file://${TESTROOT}/repos/trunk/test ${TESTROOT}/export1.crlf
${PYTHON} ${WORKDIR}/Tests/find.py ${TESTROOT}/export1.native
${PYTHON} ${WORKDIR}/Tests/find.py ${TESTROOT}/export1.cr
${PYTHON} ${WORKDIR}/Tests/find.py ${TESTROOT}/export1.lf
${PYTHON} ${WORKDIR}/Tests/find.py ${TESTROOT}/export1.crlf
echo Info: Testing - import
echo Info: Testing - info
cmd_pysvn info ${TESTROOT}/wc2/test
cmd_pysvn info ${TESTROOT}/wc2/test/file1.txt
echo Info: Testing - log
cmd_pysvn log ${TESTROOT}/wc2
echo Info: Testing - ls
cmd_pysvn ls file://${TESTROOT}/repos/trunk/test
cmd_pysvn ls -v file://${TESTROOT}/repos/trunk/test
cmd_pysvn ls ${TESTROOT}/wc2/test
cmd_pysvn ls -v ${TESTROOT}/wc2/test
echo Info: Testing - merge - done below
echo Info: Testing - mkdir - done above
echo Info: Testing - move
echo move url test >msg.tmp
cmd_pysvn move file://${TESTROOT}/repos/trunk/test/file2.txt file://${TESTROOT}/repos/trunk/test/file2b.txt >${TESTROOT}/wc1/test/file4.txt
cmd_pysvn checkin ${TESTROOT}/wc1 -m "change wc1 for status -u to detect"
cmd_pysvn status ${TESTROOT}/wc2
cmd_pysvn status --verbose ${TESTROOT}/wc2
cmd_pysvn status --show-updates ${TESTROOT}/wc2
cmd_pysvn status --show-updates --verbose ${TESTROOT}/wc2
cmd_pysvn update
cmd_pysvn status --show-updates ${TESTROOT}/wc2
cmd_pysvn status --show-updates --verbose ${TESTROOT}/wc2
cmd_pysvn checkin ${TESTROOT}/wc2 -m "prop change"
echo Info: Testing - propdel
cd ${TESTROOT}/wc2/test
cmd_pysvn propset test:prop1 del_me file4.txt
cmd_pysvn proplist -v file4.txt
cmd_pysvn propdel test:prop1 file4.txt
cmd_pysvn proplist -v file4.txt
echo Info: Testing - propget
cmd_pysvn propset svn:eol-style native file4.txt
cmd_pysvn propget svn:eol-style file4.txt
cmd_pysvn propget unknown file4.txt
echo Info: Testing - proplist - see above
echo Info: Testing - propset
cd ${TESTROOT}/wc2/test
cmd_pysvn proplist -v file4.txt
cmd_pysvn propset svn:eol-style native file4.txt
cmd_pysvn proplist -v file4.txt
echo Info: Testing - remove
cd ${TESTROOT}/wc2/test
cmd_pysvn remove file5.txt
cmd_pysvn status
echo Info: Testing - resolved
echo conflict in file4 yes >>${TESTROOT}/wc1/test/file4.txt
echo conflict in file4 no >>${TESTROOT}/wc2/test/file4.txt
cmd_pysvn checkin ${TESTROOT}/wc1/test -m "make a conflict part 1"
cmd_pysvn update ${TESTROOT}/wc2/test
cmd_pysvn status
cmd cp ${TESTROOT}/wc2/test/file4.txt.mine ${TESTROOT}/wc2/test/file4.txt
cmd_pysvn resolved ${TESTROOT}/wc2/test/file4.txt
cmd_pysvn checkin ${TESTROOT}/wc2/test/file4.txt -m "resolve a confict part 2"
echo Info: Testing - revert
cmd_pysvn revert file5.txt
cmd_pysvn status
echo Info: Testing - revproplist
cmd_pysvn revproplist file://${TESTROOT}/repos/trunk
echo Info: Testing - revpropget
cmd_pysvn revpropget svn:log file://${TESTROOT}/repos/trunk
cmd_pysvn revpropget no_such_prop file://${TESTROOT}/repos/trunk
echo Info: Testing - revpropset
cmd_pysvn revpropset svn:log "Hello world" file://${TESTROOT}/repos/trunk
echo Info: Testing - revpropdel
cmd_pysvn revpropdel svn:log file://${TESTROOT}/repos/trunk
echo Info: Testing - status - see above
echo Info: Testing - relocate
cmd mkdir ${TESTROOT}/root
cmd mv ${TESTROOT}/repos ${TESTROOT}/root
cmd_pysvn info ${TESTROOT}/wc1
cmd_pysvn relocate file://${TESTROOT}/repos/trunk file://${TESTROOT}/root/repos/trunk ${TESTROOT}/wc1
cmd_pysvn info ${TESTROOT}/wc1
cmd_pysvn info ${TESTROOT}/wc2
cmd_pysvn relocate file://${TESTROOT}/repos/trunk file://${TESTROOT}/root/repos/trunk ${TESTROOT}/wc2
cmd_pysvn info ${TESTROOT}/wc2
echo Info: Testing - switch
cmd_pysvn info ${TESTROOT}/wc2
cmd_pysvn switch ${TESTROOT}/wc2 file://${TESTROOT}/root/repos/tags/version1
cmd_pysvn info ${TESTROOT}/wc2
echo Info: Testing - update - see above
echo Info: Testing - merge
cmd_pysvn checkout file://${TESTROOT}/root/repos/trunk ${TESTROOT}/wc3
cmd cd ${TESTROOT}/wc3/test
echo test add file merge 1 >file-merge-1.txt
echo test add file merge 2 >file-merge-2.txt
cmd_pysvn add file-merge-1.txt
cmd_pysvn add file-merge-2.txt
cmd_pysvn commit -m "add test merge files" .
echo make a branch >msg.tmp
cmd_pysvn copy file://${TESTROOT}/root/repos/trunk/test file://${TESTROOT}/root/repos/trunk/test-branch file-merge-3.txt
cmd_pysvn add file-merge-3.txt
cmd_pysvn rm file-merge-1.txt
echo modify merge 2 >>file-merge-2.txt
cmd_pysvn commit -m "change test merge files" .
cmd_pysvn merge --dry-run --revision 16:17 file://${TESTROOT}/root/repos/trunk/test ${TESTROOT}/wc3/test-branch
cmd_pysvn merge --revision 16:17 file://${TESTROOT}/root/repos/trunk/test ${TESTROOT}/wc3/test-branch
cmd_pysvn status ${TESTROOT}/wc3/test-branch
cmd_pysvn diff ${TESTROOT}/wc3/test-branch
cmd ${PYTHON} ${WORKDIR}/Tests/test_01_set_get_tests.py ${TESTROOT}/configdir
pysvn-1.8.0/Tests/test-01.unix.known_good-py2-svn1.4.log 000644 000771 000771 00000123325 11253135715 022042 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /Users/barry/bin/python
Username: barry
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: mkdir testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: cd testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: mkdir tmp
Info: PYSVN command /Users/barry/bin/python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos
Info: Testing - mkdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos -v -R
2 barry 0 23-Sep-2006 19:01:20 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
2 barry 0 23-Sep-2006 19:01:20 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Info: Testing - checkout
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Checked out revision 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: python /Users/barry/wc/svn/pysvn/Extension/Tests/find.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/.svn/entries
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/.svn/format
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/.svn/entries
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/.svn/format
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: Testing - add
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file1.txt
A file1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file2.txt
A file2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file3.txt
A file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file4.txt
A file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --force file5.txt
A file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file6.txt
A file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit added files
A test/file1.txt
A test/file2.txt
A test/file3.txt
A test/file4.txt
A test/file5.txt
A test/file6.txt
Revision 3
Info: Setup to test access to deleted files
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit mod file
M test/file6.txt
Revision 4
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: rm file6.txt
D file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit delete file
D test/file6.txt
Revision 5
Info: Testing - update - get a new wc that will update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Checked out revision 5
Info: Testing - - checkin a mod from wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit modified file
M test/file1.txt
Revision 6
Info: Testing - update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Updated to revision 6
Info: Testing - the rest in lexical order
Info: Testing - annotate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2006-09-23T18:01:25.696316Z | test add file 1
1| r6 | barry | 2006-09-23T18:01:30.749997Z | line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate -r 3:4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
A /trunk/test/file6.txt
A /trunk/test/file6.txt
0| r3 | barry | 2006-09-23T18:01:25.696316Z | test add file 6
1| r4 | barry | 2006-09-23T18:01:26.621185Z | test mod file 6
Info: Testing - cat
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r head file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
test add file 1
line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r 4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
test add file 6
test mod file 6
Info: Testing - cleanup
Info: Testing - copy
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags
8 barry 0 23-Sep-2006 19:01:35 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: propset svn:eol-style native /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
A wc2/test/file1b.txt
Revision 9
Info: Testing - diff
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (revision 9)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Testing - export
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CR file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol LF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CRLF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
Info: Testing - import
Info: Testing - info
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Repository UUID: 1d0e2188-69a2-45af-83c4-dd8be320755e
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 23-Sep-2006 19:01:30
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Name: file1.txt
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
Repository UUID: 1d0e2188-69a2-45af-83c4-dd8be320755e
Revision: 6
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 23-Sep-2006 19:01:30
Text Last Updated: 23-Sep-2006 19:01:31
Checksum: d17a5219a23a23ce7f363b75e09ec043
Info: Testing - log
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: log /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
------------------------------------------------------------
rev 9: barry | 23-Sep-2006 19:01:38 | 1 lines
copy test
------------------------------------------------------------
rev 6: barry | 23-Sep-2006 19:01:30 | 1 lines
commit modified file
------------------------------------------------------------
rev 5: barry | 23-Sep-2006 19:01:28 | 1 lines
commit delete file
------------------------------------------------------------
rev 4: barry | 23-Sep-2006 19:01:26 | 1 lines
commit mod file
------------------------------------------------------------
rev 3: barry | 23-Sep-2006 19:01:25 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 23-Sep-2006 19:01:20 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 23-Sep-2006 19:01:19 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
6 barry 23 23-Sep-2006 19:01:30 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
9 barry 23 23-Sep-2006 19:01:38 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
3 barry 16 23-Sep-2006 19:01:25 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
3 barry 16 23-Sep-2006 19:01:25 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
3 barry 16 23-Sep-2006 19:01:25 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
3 barry 16 23-Sep-2006 19:01:25 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 barry 23 23-Sep-2006 19:01:30 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
9 barry 23 23-Sep-2006 19:01:38 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
3 barry 16 23-Sep-2006 19:01:25 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
3 barry 16 23-Sep-2006 19:01:25 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
3 barry 16 23-Sep-2006 19:01:25 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
3 barry 16 23-Sep-2006 19:01:25 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: Testing - merge - done below
Info: Testing - mkdir - done above
Info: Testing - move
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
A wc2/test/file3b.txt
D wc2/test/file3.txt
M wc2/test/file1b.txt
Revision 11
Info: Testing - status
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
M test/file4.txt
Revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update
A file1b.txt
A file2b.txt
A file3b.txt
D file2.txt
D file3.txt
Updated to revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
Nothing to commit
Info: Testing - propdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset test:prop1 del_me file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propdel test:prop1 file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Info: Testing - propget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget svn:eol-style file4.txt
file4.txt: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget unknown file4.txt
Info: Testing - proplist - see above
Info: Testing - propset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Testing - remove
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: remove file5.txt
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
M file4.txt
D file5.txt
Info: Testing - resolved
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
M wc1/test/file4.txt
Revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Updated to revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
CM file4.txt
? file4.txt.mine
? file4.txt.r13
? file4.txt.r6
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cp /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: resolved /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
M file4.txt
Revision 14
Info: Testing - revert
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revert file5.txt
R file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
Info: Testing - revproplist
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revproplist file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:author: barry
svn:date: 2006-09-23T18:02:03.809429Z
svn:log: resolve a confict part 2
Info: Testing - revpropget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:log: resolve a confict part 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget no_such_prop file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
no_such_prop: None
Info: Testing - revpropset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropset svn:log Hello world file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - revpropdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropdel svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - status - see above
Info: Testing - relocate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mkdir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mv /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 1d0e2188-69a2-45af-83c4-dd8be320755e
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 23-Sep-2006 19:01:20
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 1d0e2188-69a2-45af-83c4-dd8be320755e
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 23-Sep-2006 19:01:20
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 1d0e2188-69a2-45af-83c4-dd8be320755e
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 23-Sep-2006 19:01:30
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 1d0e2188-69a2-45af-83c4-dd8be320755e
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 23-Sep-2006 19:01:30
Info: Testing - switch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 1d0e2188-69a2-45af-83c4-dd8be320755e
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 23-Sep-2006 19:01:30
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: switch /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
Repository UUID: 1d0e2188-69a2-45af-83c4-dd8be320755e
Revision: 14
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 8
Last Changed Date: 23-Sep-2006 19:01:35
Info: Testing - update - see above
Info: Testing - merge
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Checked out revision 14
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-1.txt
A file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-2.txt
A file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m add test merge files .
A test/file-merge-1.txt
A test/file-merge-2.txt
Revision 15
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Updated to revision 16
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-3.txt
A file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: rm file-merge-1.txt
D file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m change test merge files .
A test/file-merge-3.txt
D test/file-merge-1.txt
M test/file-merge-2.txt
Revision 17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --dry-run --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
skip /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A + /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: Command: /Users/barry/bin/python /Users/barry/wc/svn/pysvn/Extension/Tests/test_01_set_get_tests.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
pysvn-1.8.0/Tests/test-01.unix.known_good-py2-svn1.5.log 000644 000771 000771 00000147162 11264412526 022050 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /Library/Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python
Username: barry
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: mkdir testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: cd testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: mkdir tmp
Info: PYSVN command /Library/Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos
Info: Testing - mkdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos -v -R
2 barry 0 11-Oct-2009 18:20:37 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
2 barry 0 11-Oct-2009 18:20:37 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Info: Testing - checkout
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Checked out revision 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: python /Users/barry/wc/svn/pysvn/Extension/Tests/find.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/.svn/entries
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/.svn/format
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/.svn/entries
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/.svn/format
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: Testing - add
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file1.txt
A file1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file2.txt
A file2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file3.txt
A file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file4.txt
A file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --force file5.txt
A file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file6.txt
A file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add folder1
A folder1
A folder1/file7.txt
A folder1/folder2
A folder1/folder2/file8.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --non-recursive folder3
A folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit added files
A test/file1.txt
A test/file2.txt
A test/file3.txt
A test/file4.txt
A test/file5.txt
A test/file6.txt
A test/folder1
A test/folder1/file7.txt
A test/folder1/folder2
A test/folder1/folder2/file8.txt
A test/folder3
Revision 3
Info: Setup to test access to deleted files
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit mod file
M test/file6.txt
Revision 4
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: rm file6.txt
D file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit delete file
D test/file6.txt
Revision 5
Info: Testing - update - get a new wc that will update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Checked out revision 5
Info: Testing - - checkin a mod from wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit modified file
M test/file1.txt
Revision 6
Info: Testing - update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Updated to revision 6
Info: Testing - the rest in lexical order
Info: Testing - annotate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2009-10-11T17:20:38.891999Z | test add file 1
1| r6 | barry | 2009-10-11T17:20:42.178592Z | line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate -r 3:4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
A /trunk/test/file6.txt
A /trunk/test/file6.txt
0| r3 | barry | 2009-10-11T17:20:38.891999Z | test add file 6
1| r4 | barry | 2009-10-11T17:20:39.209123Z | test mod file 6
Info: Testing - cat
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r head file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
test add file 1
line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r 4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
test add file 6
test mod file 6
Info: Testing - cleanup
Info: Testing - copy
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags
8 barry 0 11-Oct-2009 18:20:44 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: propset svn:eol-style native /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
A wc2/test/file1b.txt
Revision 9
Info: Testing - diff
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (revision 9)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Testing - export
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CR file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol LF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CRLF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder3
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
Info: Testing - import
Info: Testing - info
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Repository UUID: 423b75ad-6902-4286-a87d-8ad4aa527903
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 11-Oct-2009 18:20:42
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Name: file1.txt
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
Repository UUID: 423b75ad-6902-4286-a87d-8ad4aa527903
Revision: 6
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 11-Oct-2009 18:20:42
Text Last Updated: 11-Oct-2009 18:20:43
Checksum: d17a5219a23a23ce7f363b75e09ec043
Info: Testing - log
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: log /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
------------------------------------------------------------
rev 9: barry | 11-Oct-2009 18:20:45 | 1 lines
copy test
------------------------------------------------------------
rev 6: barry | 11-Oct-2009 18:20:42 | 1 lines
commit modified file
------------------------------------------------------------
rev 5: barry | 11-Oct-2009 18:20:40 | 1 lines
commit delete file
------------------------------------------------------------
rev 4: barry | 11-Oct-2009 18:20:39 | 1 lines
commit mod file
------------------------------------------------------------
rev 3: barry | 11-Oct-2009 18:20:38 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 11-Oct-2009 18:20:37 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 11-Oct-2009 18:20:37 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
6 barry 23 11-Oct-2009 18:20:42 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
9 barry 23 11-Oct-2009 18:20:45 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
3 barry 16 11-Oct-2009 18:20:38 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
3 barry 16 11-Oct-2009 18:20:38 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
3 barry 16 11-Oct-2009 18:20:38 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
3 barry 16 11-Oct-2009 18:20:38 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
3 barry 0 11-Oct-2009 18:20:38 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
3 barry 0 11-Oct-2009 18:20:38 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 barry 23 11-Oct-2009 18:20:42 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
9 barry 23 11-Oct-2009 18:20:45 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
3 barry 16 11-Oct-2009 18:20:38 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
3 barry 16 11-Oct-2009 18:20:38 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
3 barry 16 11-Oct-2009 18:20:38 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
3 barry 16 11-Oct-2009 18:20:38 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
3 barry 0 11-Oct-2009 18:20:38 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
3 barry 0 11-Oct-2009 18:20:38 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: Testing - merge - done below
Info: Testing - mkdir - done above
Info: Testing - move
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
A wc2/test/file3b.txt
D wc2/test/file3.txt
M wc2/test/file1b.txt
Revision 11
Info: Testing - status
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
M test/file4.txt
Revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update
A file1b.txt
A file2b.txt
A file3b.txt
D file2.txt
D file3.txt
Updated to revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
Nothing to commit
Info: Testing - propdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset test:prop1 del_me file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propdel test:prop1 file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Info: Testing - propget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget svn:eol-style file4.txt
file4.txt: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget unknown file4.txt
Info: Testing - proplist - see above
Info: Testing - propset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Testing - remove
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: remove file5.txt
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
M file4.txt
D file5.txt
Info: Testing - resolved
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
M wc1/test/file4.txt
Revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
callback_conflict_resolver
action:
base_file: u'/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/text-base/file4.txt.svn-base'
is_binary: False
kind:
merged_file: u'/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/tmp/tempfile.3.tmp'
mime_type: None
my_file: u'/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/tmp/tempfile.2.tmp'
node_kind:
path: '/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt'
property_name: None
reason:
their_file: u'/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/tmp/text-base/file4.txt.svn-base'
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Updated to revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
CM file4.txt
? file4.txt.mine
? file4.txt.r13
? file4.txt.r6
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cp /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: resolved /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
M file4.txt
Revision 14
Info: Testing - revert
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revert file5.txt
R file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
Info: Testing - revproplist
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revproplist file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:author: barry
svn:date: 2009-10-11T17:20:54.318633Z
svn:log: resolve a confict part 2
Info: Testing - revpropget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:log: resolve a confict part 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget no_such_prop file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
no_such_prop: None
Info: Testing - revpropset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropset svn:log Hello world file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - revpropdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropdel svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - status - see above
Info: Testing - relocate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mkdir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mv /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 423b75ad-6902-4286-a87d-8ad4aa527903
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 11-Oct-2009 18:20:37
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 423b75ad-6902-4286-a87d-8ad4aa527903
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 11-Oct-2009 18:20:37
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 423b75ad-6902-4286-a87d-8ad4aa527903
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 11-Oct-2009 18:20:42
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 423b75ad-6902-4286-a87d-8ad4aa527903
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 11-Oct-2009 18:20:42
Info: Testing - switch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 423b75ad-6902-4286-a87d-8ad4aa527903
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 11-Oct-2009 18:20:42
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: switch /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
Repository UUID: 423b75ad-6902-4286-a87d-8ad4aa527903
Revision: 14
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 8
Last Changed Date: 11-Oct-2009 18:20:44
Info: Testing - update - see above
Info: Testing - merge
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Checked out revision 14
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-1.txt
A file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-2.txt
A file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m add test merge files .
A test/file-merge-1.txt
A test/file-merge-2.txt
Revision 15
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Updated to revision 16
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-3.txt
A file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: rm file-merge-1.txt
D file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m change test merge files .
A test/file-merge-3.txt
D test/file-merge-1.txt
M test/file-merge-2.txt
Revision 17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --dry-run --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
MM /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A + /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r17*
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1b.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file2b.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file4.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file3b.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file5.txt:r17
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-2.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-3.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1.txt:r17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: Command: /Library/Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_01_set_get_tests.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
pysvn-1.8.0/Tests/test-01.unix.known_good-py2-svn1.6.log 000644 000771 000771 00000152340 12070137651 022042 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Username: barry
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: mkdir testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: cd testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: mkdir tmp
Info: PYSVN command /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos
Info: Testing - mkdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos -v -R
2 barry 0 30-Dec-2012 22:24:12 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
2 barry 0 30-Dec-2012 22:24:12 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Info: Testing - checkout
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Checked out revision 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/find.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: Testing - add
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file1.txt
A file1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file2.txt
A file2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file3.txt
A file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file4.txt
A file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --force file5.txt
A file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file6.txt
A file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add folder1
A folder1
A folder1/file7.txt
A folder1/folder2
A folder1/folder2/file8.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --non-recursive folder3
A folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit added files
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
Revision 3
Info: Setup to test access to deleted files
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit mod file
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Revision 4
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: rm file6.txt
D file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit delete file
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Revision 5
Info: Testing - update - get a new wc that will update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Checked out revision 5
Info: Testing - - checkin a mod from wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit modified file
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
Revision 6
Info: Testing - update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Updated to revision 6
Info: Testing - the rest in lexical order
Info: Testing - annotate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2012-12-30T22:24:13.512171Z | test add file 1
1| r6 | barry | 2012-12-30T22:24:17.081941Z | line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate -r 3:4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
A /trunk/test/file6.txt
A /trunk/test/file6.txt
0| r3 | barry | 2012-12-30T22:24:13.512171Z | test add file 6
1| r4 | barry | 2012-12-30T22:24:14.082196Z | test mod file 6
Info: Testing - cat
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r head file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
test add file 1
line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r 4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
test add file 6
test mod file 6
Info: Testing - cleanup
Info: Testing - copy
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags
8 barry 0 30-Dec-2012 22:24:19 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: propset svn:eol-style native /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Revision 9
Info: Testing - diff
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (revision 9)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Testing - export
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CR file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol LF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CRLF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder3
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
Info: Testing - import
Info: Testing - info
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Repository UUID: d64e48db-ce8a-466d-b5fd-aca4ae73dfd5
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 30-Dec-2012 22:24:17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Name: file1.txt
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
Repository UUID: d64e48db-ce8a-466d-b5fd-aca4ae73dfd5
Revision: 6
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 30-Dec-2012 22:24:17
Text Last Updated: 30-Dec-2012 22:24:18
Checksum: d17a5219a23a23ce7f363b75e09ec043
Info: Testing - log
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: log /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
------------------------------------------------------------
rev 9: barry | 30-Dec-2012 22:24:20 | 1 lines
copy test
------------------------------------------------------------
rev 6: barry | 30-Dec-2012 22:24:17 | 1 lines
commit modified file
------------------------------------------------------------
rev 5: barry | 30-Dec-2012 22:24:15 | 1 lines
commit delete file
------------------------------------------------------------
rev 4: barry | 30-Dec-2012 22:24:14 | 1 lines
commit mod file
------------------------------------------------------------
rev 3: barry | 30-Dec-2012 22:24:13 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 30-Dec-2012 22:24:12 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 30-Dec-2012 22:24:12 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
6 barry 23 30-Dec-2012 22:24:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
9 barry 23 30-Dec-2012 22:24:20 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
3 barry 16 30-Dec-2012 22:24:13 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
3 barry 16 30-Dec-2012 22:24:13 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
3 barry 16 30-Dec-2012 22:24:13 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
3 barry 16 30-Dec-2012 22:24:13 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
3 barry 0 30-Dec-2012 22:24:13 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
3 barry 0 30-Dec-2012 22:24:13 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 barry 23 30-Dec-2012 22:24:17 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
9 barry 23 30-Dec-2012 22:24:20 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
3 barry 16 30-Dec-2012 22:24:13 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
3 barry 16 30-Dec-2012 22:24:13 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
3 barry 16 30-Dec-2012 22:24:13 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
3 barry 16 30-Dec-2012 22:24:13 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
3 barry 0 30-Dec-2012 22:24:13 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
3 barry 0 30-Dec-2012 22:24:13 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: Testing - merge - done below
Info: Testing - mkdir - done above
Info: Testing - move
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Revision 11
Info: Testing - status
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update
A file1b.txt
A file2b.txt
A file3b.txt
D file2.txt
D file3.txt
Updated to revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
Nothing to commit
Info: Testing - propdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset test:prop1 del_me file4.txt
property_added file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propdel test:prop1 file4.txt
property_deleted file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Info: Testing - propget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_added file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget svn:eol-style file4.txt
file4.txt: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget unknown file4.txt
Info: Testing - proplist - see above
Info: Testing - propset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_modified file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Testing - remove
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: remove file5.txt
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
M file4.txt
D file5.txt
Info: Testing - resolved
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
callback_conflict_resolver
action:
base_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/text-base/file4.txt.svn-base
is_binary: False
kind:
merged_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/tmp/file4.txt.tmp
mime_type: None
my_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/tmp/svn-2Anz5J
node_kind:
operation:
path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
property_name: None
reason:
src_left_version: None
src_right_version: None
their_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/tmp/text-base/file4.txt.svn-base
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Updated to revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
CM file4.txt
? file4.txt.mine
? file4.txt.r13
? file4.txt.r6
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cp /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: resolved /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Revision 14
Info: Testing - revert
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revert file5.txt
R file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
Info: Testing - revproplist
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revproplist file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:author: barry
svn:date: 2012-12-30T22:24:27.180956Z
svn:log: resolve a confict part 2
Info: Testing - revpropget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:log: resolve a confict part 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget no_such_prop file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
no_such_prop: None
Info: Testing - revpropset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropset svn:log Hello world file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - revpropdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropdel svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - status - see above
Info: Testing - relocate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mkdir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mv /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: d64e48db-ce8a-466d-b5fd-aca4ae73dfd5
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 30-Dec-2012 22:24:12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: d64e48db-ce8a-466d-b5fd-aca4ae73dfd5
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 30-Dec-2012 22:24:12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: d64e48db-ce8a-466d-b5fd-aca4ae73dfd5
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 30-Dec-2012 22:24:17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: d64e48db-ce8a-466d-b5fd-aca4ae73dfd5
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 30-Dec-2012 22:24:17
Info: Testing - switch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: d64e48db-ce8a-466d-b5fd-aca4ae73dfd5
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 30-Dec-2012 22:24:17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: switch /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
Repository UUID: d64e48db-ce8a-466d-b5fd-aca4ae73dfd5
Revision: 14
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 8
Last Changed Date: 30-Dec-2012 22:24:19
Info: Testing - update - see above
Info: Testing - merge
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Checked out revision 14
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-1.txt
A file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-2.txt
A file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m add test merge files .
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Revision 15
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Updated to revision 16
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-3.txt
A file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: rm file-merge-1.txt
D file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m change test merge files .
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Revision 17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --dry-run --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
MM /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A + /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r17*
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1b.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file2b.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file4.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file3b.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file5.txt:r17
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-2.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-3.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1.txt:r17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_01_set_get_tests.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
pysvn-1.8.0/Tests/test-01.unix.known_good-py2-svn1.7.log 000644 000771 000771 00000155574 12070641640 022055 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Username: barry
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: mkdir testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: cd testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: mkdir tmp
Info: PYSVN command /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos
Info: Testing - mkdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos -v -R
2 barry 0 01-Jan-2013 20:12:54 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
2 barry 0 01-Jan-2013 20:12:54 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Info: Testing - checkout
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Checked out revision 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/find.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: Testing - add
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --force file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file6.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --non-recursive folder3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit added files
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
Revision 3
Info: Setup to test access to deleted files
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit mod file
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Revision 4
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: rm file6.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit delete file
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Revision 5
Info: Testing - update - get a new wc that will update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Checked out revision 5
Info: Testing - - checkin a mod from wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit modified file
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
Revision 6
Info: Testing - update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Updated to revision 6
Info: Testing - the rest in lexical order
Info: Testing - annotate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2013-01-01T20:12:55.565540Z | test add file 1
1| r6 | barry | 2013-01-01T20:12:59.084714Z | line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate -r 3:4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
A /trunk/test/file6.txt
A /trunk/test/file6.txt
0| r3 | barry | 2013-01-01T20:12:55.565540Z | test add file 6
1| r4 | barry | 2013-01-01T20:12:56.086174Z | test mod file 6
Info: Testing - cat
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r head file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
test add file 1
line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r 4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
test add file 6
test mod file 6
Info: Testing - cleanup
Info: Testing - copy
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags
8 barry 0 01-Jan-2013 20:13:01 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: propset svn:eol-style native /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Revision 9
Info: Testing - diff
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (revision 9)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Testing - export
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CR file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol LF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CRLF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder3
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
Info: Testing - import
Info: Testing - info
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Repository UUID: 57adf7d8-48f0-4ae2-a42a-23b27a6713db
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 01-Jan-2013 20:12:59
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Name: file1.txt
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
Repository UUID: 57adf7d8-48f0-4ae2-a42a-23b27a6713db
Revision: 6
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 01-Jan-2013 20:12:59
Text Last Updated: 01-Jan-2013 20:13:00
Checksum: d17a5219a23a23ce7f363b75e09ec043
Info: Testing - log
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: log /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
------------------------------------------------------------
rev 9: barry | 01-Jan-2013 20:13:02 | 1 lines
copy test
------------------------------------------------------------
rev 6: barry | 01-Jan-2013 20:12:59 | 1 lines
commit modified file
------------------------------------------------------------
rev 5: barry | 01-Jan-2013 20:12:57 | 1 lines
commit delete file
------------------------------------------------------------
rev 4: barry | 01-Jan-2013 20:12:56 | 1 lines
commit mod file
------------------------------------------------------------
rev 3: barry | 01-Jan-2013 20:12:55 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 01-Jan-2013 20:12:54 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 01-Jan-2013 20:12:54 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
6 barry 23 01-Jan-2013 20:12:59 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
9 barry 23 01-Jan-2013 20:13:02 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
3 barry 16 01-Jan-2013 20:12:55 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
3 barry 16 01-Jan-2013 20:12:55 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
3 barry 16 01-Jan-2013 20:12:55 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
3 barry 16 01-Jan-2013 20:12:55 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
3 barry 0 01-Jan-2013 20:12:55 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
3 barry 0 01-Jan-2013 20:12:55 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 barry 23 01-Jan-2013 20:12:59 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
9 barry 23 01-Jan-2013 20:13:02 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
3 barry 16 01-Jan-2013 20:12:55 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
3 barry 16 01-Jan-2013 20:12:55 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
3 barry 16 01-Jan-2013 20:12:55 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
3 barry 16 01-Jan-2013 20:12:55 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
3 barry 0 01-Jan-2013 20:12:55 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
3 barry 0 01-Jan-2013 20:12:55 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: Testing - merge - done below
Info: Testing - mkdir - done above
Info: Testing - move
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Revision 11
Info: Testing - status
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Updated to revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
Nothing to commit
Info: Testing - propdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset test:prop1 del_me file4.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propdel test:prop1 file4.txt
property_deleted /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Info: Testing - propget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget svn:eol-style file4.txt
file4.txt: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget unknown file4.txt
Info: Testing - proplist - see above
Info: Testing - propset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_modified /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Testing - remove
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: remove file5.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
M file4.txt
D file5.txt
Info: Testing - resolved
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
callback_conflict_resolver
action:
base_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/.svn/pristine/df/df6174c0ddc76db371593ea5ac22d62b9e6276dc.svn-base
is_binary: False
kind:
merged_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/.svn/tmp/file4.txt.tmp
mime_type: None
my_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/.svn/tmp/svn-j6KJ5O
node_kind:
operation:
path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
property_name: None
reason:
src_left_version: None
src_right_version: None
their_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/.svn/pristine/45/4554e019d2005c135cc0e5355b9cdb849ab46ed3.svn-base
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Updated to revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
CM file4.txt
? file4.txt.mine
? file4.txt.r13
? file4.txt.r6
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cp /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: resolved /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Revision 14
Info: Testing - revert
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revert file5.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
Info: Testing - revproplist
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revproplist file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:author: barry
svn:date: 2013-01-01T20:13:09.183286Z
svn:log: resolve a confict part 2
Info: Testing - revpropget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:log: resolve a confict part 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget no_such_prop file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
no_such_prop: None
Info: Testing - revpropset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropset svn:log Hello world file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - revpropdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropdel svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - status - see above
Info: Testing - relocate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mkdir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mv /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 57adf7d8-48f0-4ae2-a42a-23b27a6713db
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 01-Jan-2013 20:12:54
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 57adf7d8-48f0-4ae2-a42a-23b27a6713db
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 01-Jan-2013 20:12:54
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 57adf7d8-48f0-4ae2-a42a-23b27a6713db
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 01-Jan-2013 20:12:59
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 57adf7d8-48f0-4ae2-a42a-23b27a6713db
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 01-Jan-2013 20:12:59
Info: Testing - switch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 57adf7d8-48f0-4ae2-a42a-23b27a6713db
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 01-Jan-2013 20:12:59
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: switch /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
Repository UUID: 57adf7d8-48f0-4ae2-a42a-23b27a6713db
Revision: 14
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 8
Last Changed Date: 01-Jan-2013 20:13:01
Info: Testing - update - see above
Info: Testing - merge
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Checked out revision 14
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m add test merge files .
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Revision 15
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Updated to revision 16
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: rm file-merge-1.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m change test merge files .
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Revision 17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --dry-run --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
merge_record_info_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
MM /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A + /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch (working copy)
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r17*
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-2.txt:r17
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt (working copy)
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-3.txt:r17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_01_set_get_tests.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
pysvn-1.8.0/Tests/test-01.unix.known_good-py2-svn1.8.log 000644 000771 000771 00000155026 12177517363 022062 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Username: barry
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: mkdir testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: cd testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: mkdir tmp
Info: PYSVN command /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos
Info: Testing - mkdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos -v -R
2 barry 0 04-Aug-2013 19:34:26 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
2 barry 0 04-Aug-2013 19:34:26 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Info: Testing - checkout
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Checked out revision 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/find.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: Testing - add
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --force file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file6.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --non-recursive folder3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit added files
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
Revision 3
Info: Setup to test access to deleted files
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit mod file
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Revision 4
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: rm file6.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit delete file
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Revision 5
Info: Testing - update - get a new wc that will update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Checked out revision 5
Info: Testing - - checkin a mod from wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit modified file
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
Revision 6
Info: Testing - update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Updated to revision 6
Info: Testing - the rest in lexical order
Info: Testing - annotate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2013-08-04T18:34:27.621163Z | test add file 1
1| r6 | barry | 2013-08-04T18:34:31.082368Z | line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate -r 3:4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
A /trunk/test/file6.txt
A /trunk/test/file6.txt
0| r3 | barry | 2013-08-04T18:34:27.621163Z | test add file 6
1| r4 | barry | 2013-08-04T18:34:28.121480Z | test mod file 6
Info: Testing - cat
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r head file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
test add file 1
line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r 4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
test add file 6
test mod file 6
Info: Testing - cleanup
Info: Testing - copy
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags
8 barry 0 04-Aug-2013 19:34:33 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: propset svn:eol-style native /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Revision 9
Info: Testing - diff
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (revision 9)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Testing - export
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CR file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol LF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CRLF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder3
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
Info: Testing - import
Info: Testing - info
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Repository UUID: 21872268-99f7-41cc-a560-2679c7be3639
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 04-Aug-2013 19:34:31
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Name: file1.txt
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
Repository UUID: 21872268-99f7-41cc-a560-2679c7be3639
Revision: 6
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 04-Aug-2013 19:34:31
Text Last Updated: 04-Aug-2013 19:34:32
Checksum: d17a5219a23a23ce7f363b75e09ec043
Info: Testing - log
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: log /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
------------------------------------------------------------
rev 9: barry | 04-Aug-2013 19:34:34 | 1 lines
copy test
------------------------------------------------------------
rev 6: barry | 04-Aug-2013 19:34:31 | 1 lines
commit modified file
------------------------------------------------------------
rev 5: barry | 04-Aug-2013 19:34:29 | 1 lines
commit delete file
------------------------------------------------------------
rev 4: barry | 04-Aug-2013 19:34:28 | 1 lines
commit mod file
------------------------------------------------------------
rev 3: barry | 04-Aug-2013 19:34:27 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 04-Aug-2013 19:34:26 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 04-Aug-2013 19:34:25 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
6 barry 23 04-Aug-2013 19:34:31 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
9 barry 23 04-Aug-2013 19:34:34 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
3 barry 16 04-Aug-2013 19:34:27 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
3 barry 16 04-Aug-2013 19:34:27 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
3 barry 16 04-Aug-2013 19:34:27 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
3 barry 16 04-Aug-2013 19:34:27 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
3 barry 0 04-Aug-2013 19:34:27 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
3 barry 0 04-Aug-2013 19:34:27 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 barry 23 04-Aug-2013 19:34:31 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
9 barry 23 04-Aug-2013 19:34:34 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
3 barry 16 04-Aug-2013 19:34:27 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
3 barry 16 04-Aug-2013 19:34:27 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
3 barry 16 04-Aug-2013 19:34:27 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
3 barry 16 04-Aug-2013 19:34:27 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
3 barry 0 04-Aug-2013 19:34:27 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
3 barry 0 04-Aug-2013 19:34:27 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: Testing - merge - done below
Info: Testing - mkdir - done above
Info: Testing - move
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Revision 11
Info: Testing - status
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Updated to revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
Nothing to commit
Info: Testing - propdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset test:prop1 del_me file4.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propdel test:prop1 file4.txt
property_deleted /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Info: Testing - propget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget svn:eol-style file4.txt
file4.txt: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget unknown file4.txt
Info: Testing - proplist - see above
Info: Testing - propset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_modified /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Testing - remove
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: remove file5.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
M file4.txt
D file5.txt
Info: Testing - resolved
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
callback_conflict_resolver
action:
base_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.r6
is_binary: False
kind:
merged_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
mime_type: None
my_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine
node_kind:
operation:
path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
property_name: None
reason:
repos_url: {'node_kind': , 'path_in_repos': u'trunk/test/file4.txt', 'peg_rev': , 'repos_url': u'file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos'}
repos_url: {'node_kind': , 'path_in_repos': u'trunk/test/file4.txt', 'peg_rev': , 'repos_url': u'file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos'}
their_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.r13
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_done /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_starting /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Updated to revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
CM file4.txt
? file4.txt.mine
? file4.txt.r13
? file4.txt.r6
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cp /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: resolved /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_done /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_starting /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Revision 14
Info: Testing - revert
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revert file5.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
Info: Testing - revproplist
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revproplist file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:author: barry
svn:date: 2013-08-04T18:34:42.522751Z
svn:log: resolve a confict part 2
Info: Testing - revpropget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:log: resolve a confict part 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget no_such_prop file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
no_such_prop: None
Info: Testing - revpropset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropset svn:log Hello world file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - revpropdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropdel svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - status - see above
Info: Testing - relocate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mkdir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mv /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 21872268-99f7-41cc-a560-2679c7be3639
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 04-Aug-2013 19:34:26
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 21872268-99f7-41cc-a560-2679c7be3639
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 04-Aug-2013 19:34:26
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 21872268-99f7-41cc-a560-2679c7be3639
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 04-Aug-2013 19:34:31
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 21872268-99f7-41cc-a560-2679c7be3639
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 04-Aug-2013 19:34:31
Info: Testing - switch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 21872268-99f7-41cc-a560-2679c7be3639
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 04-Aug-2013 19:34:31
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: switch /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
Repository UUID: 21872268-99f7-41cc-a560-2679c7be3639
Revision: 14
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 8
Last Changed Date: 04-Aug-2013 19:34:33
Info: Testing - update - see above
Info: Testing - merge
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Checked out revision 14
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m add test merge files .
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Revision 15
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Updated to revision 16
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: rm file-merge-1.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m change test merge files .
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Revision 17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --dry-run --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_elide_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_record_info_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A + /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch (working copy)
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_01_set_get_tests.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
pysvn-1.8.0/Tests/test-01.unix.known_good-py2-svn1.9.log 000644 000771 000771 00000162651 12564665666 022077 0 ustar 00barry 000000 000000 WorkDir: /home/barry/wc/svn/pysvn-trunk/Extension
PYTHON: /bin/python
Username: barry
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests
Info: Command: mkdir testroot-01
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests
Info: Command: cd testroot-01
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: Command: mkdir tmp
Info: PYSVN command /bin/python /home/barry/wc/svn/pysvn-trunk/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/configdir
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: Command: svnadmin create /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos
Info: Testing - mkdir
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
commit_finalizing .
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
commit_finalizing .
Info: Testing - ls
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: pysvn command: ls file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos -v -R
2 barry 0 18-Aug-2015 18:01:32 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
2 barry 0 18-Aug-2015 18:01:32 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test
Info: Testing - checkout
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: pysvn command: checkout file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Checked out revision 2
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: Command: /bin/python /home/barry/wc/svn/pysvn-trunk/Extension/Tests/find.py /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: Command: cd /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: Testing - add
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file1.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file2.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file3.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --force file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file5.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file6.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file6.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --non-recursive folder3
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit added files
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file6.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder3
commit_finalizing .
Revision 3
Info: Setup to test access to deleted files
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit mod file
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file6.txt
commit_finalizing .
Revision 4
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: rm file6.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file6.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit delete file
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file6.txt
commit_finalizing .
Revision 5
Info: Testing - update - get a new wc that will update
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkout file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder3
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Checked out revision 5
Info: Testing - - checkin a mod from wc1
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit modified file
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file1.txt
commit_finalizing .
Revision 6
Info: Testing - update
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Updated to revision 6
Info: Testing - the rest in lexical order
Info: Testing - annotate
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2015-08-18T17:01:33.909489Z | test add file 1
1| r6 | barry | 2015-08-18T17:01:35.964739Z | line 2
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate -r 3:4 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
A /trunk/test/file6.txt
A /trunk/test/file6.txt
0| r3 | barry | 2015-08-18T17:01:33.909489Z | test add file 6
1| r4 | barry | 2015-08-18T17:01:34.523337Z | test mod file 6
Info: Testing - cat
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r head file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
test add file 1
line 2
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r 4 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
test add file 6
test mod file 6
Info: Testing - cleanup
Info: Testing - copy
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: mkdir file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
commit_finalizing .
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/tags/version1
Log message
--- -------
commit_finalizing .
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/tags
8 barry 0 18-Aug-2015 18:01:37 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/tags/version1
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: propset svn:eol-style native /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
property_added /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2 -m copy test
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
commit_finalizing .
Revision 9
Info: Testing - diff
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: diff /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Index: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
===================================================================
--- /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt (revision 9)
+++ /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Testing - export
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CR file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol LF file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CRLF file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder3
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file1.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file1b.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file2.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file3.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file4.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file5.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file1.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file1b.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file2.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file3.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file4.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file5.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file1.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file1b.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file2.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file3.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file4.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file5.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file1.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file1b.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file2.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file3.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file4.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file5.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
Info: Testing - import
Info: Testing - info
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test
Repository UUID: 580a6d2c-e056-4dbc-8631-c4380ab6c59e
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 18-Aug-2015 18:01:35
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
Name: file1.txt
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
Repository UUID: 580a6d2c-e056-4dbc-8631-c4380ab6c59e
Revision: 6
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 18-Aug-2015 18:01:35
Text Last Updated: 18-Aug-2015 18:01:36
Checksum: d17a5219a23a23ce7f363b75e09ec043
Info: Testing - log
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: log /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
------------------------------------------------------------
rev 9: barry | 18-Aug-2015 18:01:37 | 1 lines
copy test
------------------------------------------------------------
rev 6: barry | 18-Aug-2015 18:01:35 | 1 lines
commit modified file
------------------------------------------------------------
rev 5: barry | 18-Aug-2015 18:01:35 | 1 lines
commit delete file
------------------------------------------------------------
rev 4: barry | 18-Aug-2015 18:01:34 | 1 lines
commit mod file
------------------------------------------------------------
rev 3: barry | 18-Aug-2015 18:01:33 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 18-Aug-2015 18:01:32 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 18-Aug-2015 18:01:32 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Testing - ls
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/folder1
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test
6 barry 23 18-Aug-2015 18:01:35 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
9 barry 23 18-Aug-2015 18:01:37 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
3 barry 16 18-Aug-2015 18:01:33 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
3 barry 16 18-Aug-2015 18:01:33 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
3 barry 16 18-Aug-2015 18:01:33 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
3 barry 16 18-Aug-2015 18:01:33 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
3 barry 0 18-Aug-2015 18:01:33 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/folder1
3 barry 0 18-Aug-2015 18:01:33 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
6 barry 23 18-Aug-2015 18:01:35 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
9 barry 23 18-Aug-2015 18:01:37 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
3 barry 16 18-Aug-2015 18:01:33 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
3 barry 16 18-Aug-2015 18:01:33 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt
3 barry 16 18-Aug-2015 18:01:33 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
3 barry 16 18-Aug-2015 18:01:33 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
3 barry 0 18-Aug-2015 18:01:33 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1
3 barry 0 18-Aug-2015 18:01:33 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder3
Info: Testing - merge - done below
Info: Testing - mkdir - done above
Info: Testing - move
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
Log message
--- -------
commit_finalizing .
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2 -m move wc test
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
commit_finalizing .
Revision 11
Info: Testing - status
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file4.txt
commit_finalizing .
Revision 12
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --verbose /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
11 11 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
M 6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file2b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file3b.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file2.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file3.txt
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Updated to revision 12
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
M 6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2 -m prop change
Nothing to commit
Info: Testing - propdel
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset test:prop1 del_me file4.txt
property_added /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propdel test:prop1 file4.txt
property_deleted /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Info: Testing - propget
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_added /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget svn:eol-style file4.txt
file4.txt: native
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget unknown file4.txt
Info: Testing - proplist - see above
Info: Testing - propset
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_modified /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Testing - remove
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: remove file5.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
M file4.txt
D file5.txt
Info: Testing - resolved
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file4.txt
commit_finalizing .
Revision 13
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: update /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
callback_conflict_resolver
action:
base_file: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt.r6
is_binary: False
kind:
merged_file: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
mime_type: None
my_file: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt.mine
node_kind:
operation:
path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
property_name: None
reason:
repos_url: {'node_kind': , 'path_in_repos': u'trunk/test/file4.txt', 'peg_rev': , 'repos_url': u'file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos'}
repos_url: {'node_kind': , 'path_in_repos': u'trunk/test/file4.txt', 'peg_rev': , 'repos_url': u'file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos'}
their_file: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt.r13
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_done /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_starting /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Updated to revision 13
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
CM file4.txt
? file4.txt.mine
? file4.txt.r13
? file4.txt.r6
D file5.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: Command: cp /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: resolved /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
R /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_done /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_starting /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
commit_finalizing .
Revision 14
Info: Testing - revert
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revert file5.txt
R /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
Info: Testing - revproplist
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revproplist file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:author: barry
svn:date: 2015-08-18T17:01:41.888570Z
svn:log: resolve a confict part 2
Info: Testing - revpropget
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget svn:log file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:log: resolve a confict part 2
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget no_such_prop file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Revision: 14
no_such_prop: None
Info: Testing - revpropset
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropset svn:log Hello world file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - revpropdel
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropdel svn:log file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - status - see above
Info: Testing - relocate
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: Command: mkdir /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: Command: mv /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 580a6d2c-e056-4dbc-8631-c4380ab6c59e
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 18-Aug-2015 18:01:32
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 580a6d2c-e056-4dbc-8631-c4380ab6c59e
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 18-Aug-2015 18:01:32
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 580a6d2c-e056-4dbc-8631-c4380ab6c59e
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 18-Aug-2015 18:01:35
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 580a6d2c-e056-4dbc-8631-c4380ab6c59e
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 18-Aug-2015 18:01:35
Info: Testing - switch
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 580a6d2c-e056-4dbc-8631-c4380ab6c59e
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 18-Aug-2015 18:01:35
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: switch /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/tags/version1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/tags/version1
Repository UUID: 580a6d2c-e056-4dbc-8631-c4380ab6c59e
Revision: 14
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 8
Last Changed Date: 18-Aug-2015 18:01:37
Info: Testing - update - see above
Info: Testing - merge
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkout file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file2b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file3b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/folder3
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3
Checked out revision 14
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: Command: cd /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m add test merge files .
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
commit_finalizing .
Revision 15
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: copy file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk/test file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk/test-branch
Log message
--- -------
commit_finalizing .
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: update /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/folder3
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3
Updated to revision 16
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: rm file-merge-1.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m change test merge files .
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
commit_finalizing .
Revision 17
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --dry-run --revision 16:17 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk/test /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_begin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
merge_completed /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
merge_elide_info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_record_info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_record_info_begin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info_begin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --revision 16:17 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk/test /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
merge_completed /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: status /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A + /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: diff /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
Index: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
===================================================================
--- /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (revision 16)
+++ /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (nonexistent)
@@ -1 +0,0 @@
-test add file merge 1
Index: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
===================================================================
--- /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (revision 16)
+++ /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Index: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
===================================================================
Index: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
===================================================================
--- /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch (revision 16)
+++ /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch (working copy)
Property changes on: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
## -0,0 +0,1 ##
Merged /trunk/test:r17
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: Command: /bin/python /home/barry/wc/svn/pysvn-trunk/Extension/Tests/test_01_set_get_tests.py /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
pysvn-1.8.0/Tests/test-01.unix.known_good-py3-svn1.5.log 000644 000771 000771 00000147156 11264417713 022057 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /Library/Frameworks/Python.framework/Versions/3.1/Resources/Python.app/Contents/MacOS/Python
Username: barry
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: mkdir testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: cd testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: mkdir tmp
Info: PYSVN command /Library/Frameworks/Python.framework/Versions/3.1/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos
Info: Testing - mkdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos -v -R
2 barry 0 11-Oct-2009 19:01:07 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
2 barry 0 11-Oct-2009 19:01:07 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Info: Testing - checkout
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Checked out revision 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: python /Users/barry/wc/svn/pysvn/Extension/Tests/find.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/.svn/entries
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/.svn/format
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/.svn/entries
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/.svn/format
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: Testing - add
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file1.txt
A file1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file2.txt
A file2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file3.txt
A file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file4.txt
A file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --force file5.txt
A file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file6.txt
A file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add folder1
A folder1
A folder1/file7.txt
A folder1/folder2
A folder1/folder2/file8.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --non-recursive folder3
A folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit added files
A test/file1.txt
A test/file2.txt
A test/file3.txt
A test/file4.txt
A test/file5.txt
A test/file6.txt
A test/folder1
A test/folder1/file7.txt
A test/folder1/folder2
A test/folder1/folder2/file8.txt
A test/folder3
Revision 3
Info: Setup to test access to deleted files
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit mod file
M test/file6.txt
Revision 4
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: rm file6.txt
D file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit delete file
D test/file6.txt
Revision 5
Info: Testing - update - get a new wc that will update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Checked out revision 5
Info: Testing - - checkin a mod from wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit modified file
M test/file1.txt
Revision 6
Info: Testing - update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Updated to revision 6
Info: Testing - the rest in lexical order
Info: Testing - annotate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2009-10-11T18:01:09.228264Z | test add file 1
1| r6 | barry | 2009-10-11T18:01:13.188911Z | line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate -r 3:4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
A /trunk/test/file6.txt
A /trunk/test/file6.txt
0| r3 | barry | 2009-10-11T18:01:09.228264Z | test add file 6
1| r4 | barry | 2009-10-11T18:01:10.188634Z | test mod file 6
Info: Testing - cat
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r head file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
test add file 1
line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r 4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
test add file 6
test mod file 6
Info: Testing - cleanup
Info: Testing - copy
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags
8 barry 0 11-Oct-2009 19:01:15 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: propset svn:eol-style native /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
A wc2/test/file1b.txt
Revision 9
Info: Testing - diff
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (revision 9)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Testing - export
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CR file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol LF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CRLF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder3
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
Info: Testing - import
Info: Testing - info
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Repository UUID: 9a47ed63-78fc-47d8-9eed-4b5ae372f4dc
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 11-Oct-2009 19:01:13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Name: file1.txt
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
Repository UUID: 9a47ed63-78fc-47d8-9eed-4b5ae372f4dc
Revision: 6
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 11-Oct-2009 19:01:13
Text Last Updated: 11-Oct-2009 19:01:14
Checksum: d17a5219a23a23ce7f363b75e09ec043
Info: Testing - log
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: log /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
------------------------------------------------------------
rev 9: barry | 11-Oct-2009 19:01:16 | 1 lines
copy test
------------------------------------------------------------
rev 6: barry | 11-Oct-2009 19:01:13 | 1 lines
commit modified file
------------------------------------------------------------
rev 5: barry | 11-Oct-2009 19:01:11 | 1 lines
commit delete file
------------------------------------------------------------
rev 4: barry | 11-Oct-2009 19:01:10 | 1 lines
commit mod file
------------------------------------------------------------
rev 3: barry | 11-Oct-2009 19:01:09 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 11-Oct-2009 19:01:07 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 11-Oct-2009 19:01:07 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
6 barry 23 11-Oct-2009 19:01:13 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
9 barry 23 11-Oct-2009 19:01:16 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
3 barry 16 11-Oct-2009 19:01:09 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
3 barry 16 11-Oct-2009 19:01:09 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
3 barry 16 11-Oct-2009 19:01:09 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
3 barry 16 11-Oct-2009 19:01:09 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
3 barry 0 11-Oct-2009 19:01:09 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
3 barry 0 11-Oct-2009 19:01:09 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 barry 23 11-Oct-2009 19:01:13 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
9 barry 23 11-Oct-2009 19:01:16 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
3 barry 16 11-Oct-2009 19:01:09 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
3 barry 16 11-Oct-2009 19:01:09 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
3 barry 16 11-Oct-2009 19:01:09 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
3 barry 16 11-Oct-2009 19:01:09 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
3 barry 0 11-Oct-2009 19:01:09 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
3 barry 0 11-Oct-2009 19:01:09 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: Testing - merge - done below
Info: Testing - mkdir - done above
Info: Testing - move
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
A wc2/test/file3b.txt
D wc2/test/file3.txt
M wc2/test/file1b.txt
Revision 11
Info: Testing - status
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
M test/file4.txt
Revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update
A file1b.txt
A file2b.txt
A file3b.txt
D file2.txt
D file3.txt
Updated to revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
Nothing to commit
Info: Testing - propdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset test:prop1 del_me file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propdel test:prop1 file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Info: Testing - propget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget svn:eol-style file4.txt
file4.txt: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget unknown file4.txt
Info: Testing - proplist - see above
Info: Testing - propset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Testing - remove
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: remove file5.txt
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
M file4.txt
D file5.txt
Info: Testing - resolved
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
M wc1/test/file4.txt
Revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
callback_conflict_resolver
action:
base_file: '/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/text-base/file4.txt.svn-base'
is_binary: False
kind:
merged_file: '/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/tmp/tempfile.3.tmp'
mime_type: None
my_file: '/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/tmp/tempfile.2.tmp'
node_kind:
path: '/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt'
property_name: None
reason:
their_file: '/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/tmp/text-base/file4.txt.svn-base'
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Updated to revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
CM file4.txt
? file4.txt.mine
? file4.txt.r13
? file4.txt.r6
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cp /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: resolved /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
M file4.txt
Revision 14
Info: Testing - revert
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revert file5.txt
R file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
Info: Testing - revproplist
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revproplist file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:author: barry
svn:date: 2009-10-11T18:01:26.342683Z
svn:log: resolve a confict part 2
Info: Testing - revpropget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:log: resolve a confict part 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget no_such_prop file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
no_such_prop: None
Info: Testing - revpropset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropset svn:log Hello world file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - revpropdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropdel svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - status - see above
Info: Testing - relocate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mkdir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mv /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 9a47ed63-78fc-47d8-9eed-4b5ae372f4dc
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 11-Oct-2009 19:01:07
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 9a47ed63-78fc-47d8-9eed-4b5ae372f4dc
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 11-Oct-2009 19:01:07
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 9a47ed63-78fc-47d8-9eed-4b5ae372f4dc
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 11-Oct-2009 19:01:13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 9a47ed63-78fc-47d8-9eed-4b5ae372f4dc
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 11-Oct-2009 19:01:13
Info: Testing - switch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 9a47ed63-78fc-47d8-9eed-4b5ae372f4dc
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 11-Oct-2009 19:01:13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: switch /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
Repository UUID: 9a47ed63-78fc-47d8-9eed-4b5ae372f4dc
Revision: 14
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 8
Last Changed Date: 11-Oct-2009 19:01:15
Info: Testing - update - see above
Info: Testing - merge
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Checked out revision 14
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-1.txt
A file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-2.txt
A file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m add test merge files .
A test/file-merge-1.txt
A test/file-merge-2.txt
Revision 15
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Updated to revision 16
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-3.txt
A file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: rm file-merge-1.txt
D file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m change test merge files .
A test/file-merge-3.txt
D test/file-merge-1.txt
M test/file-merge-2.txt
Revision 17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --dry-run --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
MM /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A + /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r17*
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1b.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file2b.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file4.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file3b.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file5.txt:r17
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-2.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-3.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1.txt:r17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: Command: /Library/Frameworks/Python.framework/Versions/3.1/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_01_set_get_tests.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
pysvn-1.8.0/Tests/test-01.unix.known_good-py3-svn1.6.log 000644 000771 000771 00000152214 11722500535 022041 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /Library/Frameworks/Python.framework/Versions/3.2/Resources/Python.app/Contents/MacOS/Python
Username: barry
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: mkdir testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: cd testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: mkdir tmp
Info: PYSVN command /Library/Frameworks/Python.framework/Versions/3.2/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos
Info: Testing - mkdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos -v -R
2 barry 0 26-Feb-2012 18:43:33 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
2 barry 0 26-Feb-2012 18:43:33 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Info: Testing - checkout
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Checked out revision 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: /Library/Frameworks/Python.framework/Versions/3.2/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/find.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: Testing - add
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file1.txt
A file1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file2.txt
A file2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file3.txt
A file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file4.txt
A file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --force file5.txt
A file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file6.txt
A file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add folder1
A folder1
A folder1/file7.txt
A folder1/folder2
A folder1/folder2/file8.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --non-recursive folder3
A folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit added files
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
Revision 3
Info: Setup to test access to deleted files
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit mod file
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Revision 4
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: rm file6.txt
D file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit delete file
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Revision 5
Info: Testing - update - get a new wc that will update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Checked out revision 5
Info: Testing - - checkin a mod from wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit modified file
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
Revision 6
Info: Testing - update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Updated to revision 6
Info: Testing - the rest in lexical order
Info: Testing - annotate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2012-02-26T18:43:35.207911Z | test add file 1
1| r6 | barry | 2012-02-26T18:43:39.154629Z | line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate -r 3:4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
A /trunk/test/file6.txt
A /trunk/test/file6.txt
0| r3 | barry | 2012-02-26T18:43:35.207911Z | test add file 6
1| r4 | barry | 2012-02-26T18:43:36.154939Z | test mod file 6
Info: Testing - cat
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r head file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
test add file 1
line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r 4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
test add file 6
test mod file 6
Info: Testing - cleanup
Info: Testing - copy
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags
8 barry 0 26-Feb-2012 18:43:41 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: propset svn:eol-style native /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Revision 9
Info: Testing - diff
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (revision 9)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Testing - export
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CR file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol LF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CRLF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder3
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
Info: Testing - import
Info: Testing - info
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Repository UUID: cfe626db-dcfd-4eb6-b785-f52740c120f5
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 26-Feb-2012 18:43:39
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Name: file1.txt
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
Repository UUID: cfe626db-dcfd-4eb6-b785-f52740c120f5
Revision: 6
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 26-Feb-2012 18:43:39
Text Last Updated: 26-Feb-2012 18:43:40
Checksum: d17a5219a23a23ce7f363b75e09ec043
Info: Testing - log
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: log /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
------------------------------------------------------------
rev 9: barry | 26-Feb-2012 18:43:43 | 1 lines
copy test
------------------------------------------------------------
rev 6: barry | 26-Feb-2012 18:43:39 | 1 lines
commit modified file
------------------------------------------------------------
rev 5: barry | 26-Feb-2012 18:43:37 | 1 lines
commit delete file
------------------------------------------------------------
rev 4: barry | 26-Feb-2012 18:43:36 | 1 lines
commit mod file
------------------------------------------------------------
rev 3: barry | 26-Feb-2012 18:43:35 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 26-Feb-2012 18:43:33 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 26-Feb-2012 18:43:33 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
6 barry 23 26-Feb-2012 18:43:39 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
9 barry 23 26-Feb-2012 18:43:43 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
3 barry 16 26-Feb-2012 18:43:35 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
3 barry 16 26-Feb-2012 18:43:35 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
3 barry 16 26-Feb-2012 18:43:35 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
3 barry 16 26-Feb-2012 18:43:35 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
3 barry 0 26-Feb-2012 18:43:35 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
3 barry 0 26-Feb-2012 18:43:35 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 barry 23 26-Feb-2012 18:43:39 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
9 barry 23 26-Feb-2012 18:43:43 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
3 barry 16 26-Feb-2012 18:43:35 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
3 barry 16 26-Feb-2012 18:43:35 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
3 barry 16 26-Feb-2012 18:43:35 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
3 barry 16 26-Feb-2012 18:43:35 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
3 barry 0 26-Feb-2012 18:43:35 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
3 barry 0 26-Feb-2012 18:43:35 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: Testing - merge - done below
Info: Testing - mkdir - done above
Info: Testing - move
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Revision 11
Info: Testing - status
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update
A file1b.txt
A file2b.txt
A file3b.txt
D file2.txt
D file3.txt
Updated to revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
Nothing to commit
Info: Testing - propdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset test:prop1 del_me file4.txt
property_added file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propdel test:prop1 file4.txt
property_deleted file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Info: Testing - propget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_added file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget svn:eol-style file4.txt
file4.txt: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget unknown file4.txt
Info: Testing - proplist - see above
Info: Testing - propset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_modified file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Testing - remove
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: remove file5.txt
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
M file4.txt
D file5.txt
Info: Testing - resolved
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
callback_conflict_resolver
action:
base_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/text-base/file4.txt.svn-base
is_binary: False
kind:
merged_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/tmp/file4.txt.tmp
mime_type: None
my_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/tmp/svn-8ZbhHK
node_kind:
path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
property_name: None
reason:
their_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/.svn/tmp/text-base/file4.txt.svn-base
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Updated to revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
CM file4.txt
? file4.txt.mine
? file4.txt.r13
? file4.txt.r6
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cp /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: resolved /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Revision 14
Info: Testing - revert
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revert file5.txt
R file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
Info: Testing - revproplist
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revproplist file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:author: barry
svn:date: 2012-02-26T18:43:53.397717Z
svn:log: resolve a confict part 2
Info: Testing - revpropget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:log: resolve a confict part 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget no_such_prop file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
no_such_prop: None
Info: Testing - revpropset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropset svn:log Hello world file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - revpropdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropdel svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - status - see above
Info: Testing - relocate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mkdir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mv /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: cfe626db-dcfd-4eb6-b785-f52740c120f5
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 26-Feb-2012 18:43:33
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: cfe626db-dcfd-4eb6-b785-f52740c120f5
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 26-Feb-2012 18:43:33
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: cfe626db-dcfd-4eb6-b785-f52740c120f5
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 26-Feb-2012 18:43:39
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: cfe626db-dcfd-4eb6-b785-f52740c120f5
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 26-Feb-2012 18:43:39
Info: Testing - switch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: cfe626db-dcfd-4eb6-b785-f52740c120f5
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 26-Feb-2012 18:43:39
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: switch /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
Repository UUID: cfe626db-dcfd-4eb6-b785-f52740c120f5
Revision: 14
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 8
Last Changed Date: 26-Feb-2012 18:43:41
Info: Testing - update - see above
Info: Testing - merge
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Checked out revision 14
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-1.txt
A file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-2.txt
A file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m add test merge files .
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Revision 15
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Updated to revision 16
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-3.txt
A file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: rm file-merge-1.txt
D file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m change test merge files .
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Revision 17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --dry-run --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
MM /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A + /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r17*
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1b.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file2b.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file4.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file3b.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file5.txt:r17
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-2.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-3.txt:r17
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1.txt:r17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: Command: /Library/Frameworks/Python.framework/Versions/3.2/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_01_set_get_tests.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
pysvn-1.8.0/Tests/test-01.unix.known_good-py3-svn1.7.log 000644 000771 000771 00000155154 12070634757 022063 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/local/bin/python3.3
Username: barry
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: mkdir testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: cd testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: mkdir tmp
Info: PYSVN command /usr/local/bin/python3.3 /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos
Info: Testing - mkdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos -v -R
2 barry 0 01-Jan-2013 19:27:32 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
2 barry 0 01-Jan-2013 19:27:32 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Info: Testing - checkout
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Checked out revision 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: /usr/local/bin/python3.3 /Users/barry/wc/svn/pysvn/Extension/Tests/find.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: Testing - add
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --force file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file6.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --non-recursive folder3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit added files
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
Revision 3
Info: Setup to test access to deleted files
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit mod file
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Revision 4
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: rm file6.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit delete file
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Revision 5
Info: Testing - update - get a new wc that will update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Checked out revision 5
Info: Testing - - checkin a mod from wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit modified file
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
Revision 6
Info: Testing - update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Updated to revision 6
Info: Testing - the rest in lexical order
Info: Testing - annotate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2013-01-01T19:27:34.696280Z | test add file 1
1| r6 | barry | 2013-01-01T19:27:38.174811Z | line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate -r 3:4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
A /trunk/test/file6.txt
A /trunk/test/file6.txt
0| r3 | barry | 2013-01-01T19:27:34.696280Z | test add file 6
1| r4 | barry | 2013-01-01T19:27:35.095089Z | test mod file 6
Info: Testing - cat
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r head file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
test add file 1
line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r 4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
test add file 6
test mod file 6
Info: Testing - cleanup
Info: Testing - copy
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags
8 barry 0 01-Jan-2013 19:27:40 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: propset svn:eol-style native /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Revision 9
Info: Testing - diff
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (revision 9)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Testing - export
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CR file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol LF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CRLF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder3
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
Info: Testing - import
Info: Testing - info
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Repository UUID: ec2358a9-deca-44b4-9741-c46cd4376d80
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 01-Jan-2013 19:27:38
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Name: file1.txt
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
Repository UUID: ec2358a9-deca-44b4-9741-c46cd4376d80
Revision: 6
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 01-Jan-2013 19:27:38
Text Last Updated: 01-Jan-2013 19:27:39
Checksum: d17a5219a23a23ce7f363b75e09ec043
Info: Testing - log
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: log /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
------------------------------------------------------------
rev 9: barry | 01-Jan-2013 19:27:41 | 1 lines
copy test
------------------------------------------------------------
rev 6: barry | 01-Jan-2013 19:27:38 | 1 lines
commit modified file
------------------------------------------------------------
rev 5: barry | 01-Jan-2013 19:27:36 | 1 lines
commit delete file
------------------------------------------------------------
rev 4: barry | 01-Jan-2013 19:27:35 | 1 lines
commit mod file
------------------------------------------------------------
rev 3: barry | 01-Jan-2013 19:27:34 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 01-Jan-2013 19:27:32 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 01-Jan-2013 19:27:32 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
6 barry 23 01-Jan-2013 19:27:38 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
9 barry 23 01-Jan-2013 19:27:41 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
3 barry 16 01-Jan-2013 19:27:34 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
3 barry 16 01-Jan-2013 19:27:34 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
3 barry 16 01-Jan-2013 19:27:34 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
3 barry 16 01-Jan-2013 19:27:34 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
3 barry 0 01-Jan-2013 19:27:34 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
3 barry 0 01-Jan-2013 19:27:34 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 barry 23 01-Jan-2013 19:27:38 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
9 barry 23 01-Jan-2013 19:27:41 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
3 barry 16 01-Jan-2013 19:27:34 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
3 barry 16 01-Jan-2013 19:27:34 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
3 barry 16 01-Jan-2013 19:27:34 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
3 barry 16 01-Jan-2013 19:27:34 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
3 barry 0 01-Jan-2013 19:27:34 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
3 barry 0 01-Jan-2013 19:27:34 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: Testing - merge - done below
Info: Testing - mkdir - done above
Info: Testing - move
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Revision 11
Info: Testing - status
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Updated to revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
Nothing to commit
Info: Testing - propdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset test:prop1 del_me file4.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propdel test:prop1 file4.txt
property_deleted /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Info: Testing - propget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget svn:eol-style file4.txt
file4.txt: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget unknown file4.txt
Info: Testing - proplist - see above
Info: Testing - propset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_modified /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Testing - remove
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: remove file5.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
M file4.txt
D file5.txt
Info: Testing - resolved
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
callback_conflict_resolver
action:
base_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/.svn/pristine/df/df6174c0ddc76db371593ea5ac22d62b9e6276dc.svn-base
is_binary: False
kind:
merged_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/.svn/tmp/file4.txt.tmp
mime_type: None
my_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/.svn/tmp/svn-tzqMrb
node_kind:
operation:
path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
property_name: None
reason:
src_left_version: None
src_right_version: None
their_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/.svn/pristine/45/4554e019d2005c135cc0e5355b9cdb849ab46ed3.svn-base
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Updated to revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
CM file4.txt
? file4.txt.mine
? file4.txt.r13
? file4.txt.r6
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cp /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: resolved /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Revision 14
Info: Testing - revert
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revert file5.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
Info: Testing - revproplist
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revproplist file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:author: barry
svn:date: 2013-01-01T19:27:49.212805Z
svn:log: resolve a confict part 2
Info: Testing - revpropget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:log: resolve a confict part 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget no_such_prop file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
no_such_prop: None
Info: Testing - revpropset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropset svn:log Hello world file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - revpropdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropdel svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - status - see above
Info: Testing - relocate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mkdir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mv /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: ec2358a9-deca-44b4-9741-c46cd4376d80
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 01-Jan-2013 19:27:32
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: ec2358a9-deca-44b4-9741-c46cd4376d80
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 01-Jan-2013 19:27:32
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: ec2358a9-deca-44b4-9741-c46cd4376d80
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 01-Jan-2013 19:27:38
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: ec2358a9-deca-44b4-9741-c46cd4376d80
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 01-Jan-2013 19:27:38
Info: Testing - switch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: ec2358a9-deca-44b4-9741-c46cd4376d80
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 01-Jan-2013 19:27:38
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: switch /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
Repository UUID: ec2358a9-deca-44b4-9741-c46cd4376d80
Revision: 14
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 8
Last Changed Date: 01-Jan-2013 19:27:40
Info: Testing - update - see above
Info: Testing - merge
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Checked out revision 14
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m add test merge files .
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Revision 15
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Updated to revision 16
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: rm file-merge-1.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m change test merge files .
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Revision 17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --dry-run --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
merge_record_info_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
MM /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A + /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch (working copy)
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r17*
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-2.txt:r17
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt (working copy)
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-3.txt:r17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: Command: /usr/local/bin/python3.3 /Users/barry/wc/svn/pysvn/Extension/Tests/test_01_set_get_tests.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
pysvn-1.8.0/Tests/test-01.unix.known_good-py3-svn1.8.log 000644 000771 000771 00000154421 12177545222 022054 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/local/bin/python3.3
Username: barry
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: mkdir testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
Info: Command: cd testroot-01
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: mkdir tmp
Info: PYSVN command /usr/local/bin/python3.3 /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos
Info: Testing - mkdir
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos -v -R
2 barry 0 04-Aug-2013 21:52:35 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
2 barry 0 04-Aug-2013 21:52:35 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Info: Testing - checkout
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Checked out revision 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: /usr/local/bin/python3.3 /Users/barry/wc/svn/pysvn/Extension/Tests/find.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: Testing - add
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --force file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file6.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --non-recursive folder3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit added files
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
Revision 3
Info: Setup to test access to deleted files
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit mod file
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Revision 4
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: rm file6.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit delete file
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
Revision 5
Info: Testing - update - get a new wc that will update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Checked out revision 5
Info: Testing - - checkin a mod from wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit modified file
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
Revision 6
Info: Testing - update
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Updated to revision 6
Info: Testing - the rest in lexical order
Info: Testing - annotate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2013-08-04T20:52:36.803609Z | test add file 1
1| r6 | barry | 2013-08-04T20:52:40.094588Z | line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate -r 3:4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
A /trunk/test/file6.txt
A /trunk/test/file6.txt
0| r3 | barry | 2013-08-04T20:52:36.803609Z | test add file 6
1| r4 | barry | 2013-08-04T20:52:37.130054Z | test mod file 6
Info: Testing - cat
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r head file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
test add file 1
line 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r 4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
test add file 6
test mod file 6
Info: Testing - cleanup
Info: Testing - copy
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags
8 barry 0 04-Aug-2013 21:52:42 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: propset svn:eol-style native /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Revision 9
Info: Testing - diff
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (revision 9)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Testing - export
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CR file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol LF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CRLF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder3
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
Info: Testing - import
Info: Testing - info
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
Repository UUID: a725e9e1-05ce-4aee-bc2f-739fe572ced8
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 04-Aug-2013 21:52:40
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
Name: file1.txt
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
Repository UUID: a725e9e1-05ce-4aee-bc2f-739fe572ced8
Revision: 6
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 04-Aug-2013 21:52:40
Text Last Updated: 04-Aug-2013 21:52:41
Checksum: d17a5219a23a23ce7f363b75e09ec043
Info: Testing - log
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: log /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
------------------------------------------------------------
rev 9: barry | 04-Aug-2013 21:52:43 | 1 lines
copy test
------------------------------------------------------------
rev 6: barry | 04-Aug-2013 21:52:40 | 1 lines
commit modified file
------------------------------------------------------------
rev 5: barry | 04-Aug-2013 21:52:38 | 1 lines
commit delete file
------------------------------------------------------------
rev 4: barry | 04-Aug-2013 21:52:37 | 1 lines
commit mod file
------------------------------------------------------------
rev 3: barry | 04-Aug-2013 21:52:36 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 04-Aug-2013 21:52:35 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 04-Aug-2013 21:52:35 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Testing - ls
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
6 barry 23 04-Aug-2013 21:52:40 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
9 barry 23 04-Aug-2013 21:52:43 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
3 barry 16 04-Aug-2013 21:52:36 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
3 barry 16 04-Aug-2013 21:52:36 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
3 barry 16 04-Aug-2013 21:52:36 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
3 barry 16 04-Aug-2013 21:52:36 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
3 barry 0 04-Aug-2013 21:52:36 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
3 barry 0 04-Aug-2013 21:52:36 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 barry 23 04-Aug-2013 21:52:40 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
9 barry 23 04-Aug-2013 21:52:43 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
3 barry 16 04-Aug-2013 21:52:36 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
3 barry 16 04-Aug-2013 21:52:36 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
3 barry 16 04-Aug-2013 21:52:36 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
3 barry 16 04-Aug-2013 21:52:36 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
3 barry 0 04-Aug-2013 21:52:36 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
3 barry 0 04-Aug-2013 21:52:36 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: Testing - merge - done below
Info: Testing - mkdir - done above
Info: Testing - move
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
Revision 11
Info: Testing - status
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Updated to revision 12
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
M 6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
6 6 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
Nothing to commit
Info: Testing - propdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset test:prop1 del_me file4.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propdel test:prop1 file4.txt
property_deleted /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Info: Testing - propget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget svn:eol-style file4.txt
file4.txt: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget unknown file4.txt
Info: Testing - proplist - see above
Info: Testing - propset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_modified /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Testing - remove
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: remove file5.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
M file4.txt
D file5.txt
Info: Testing - resolved
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
Revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
callback_conflict_resolver
action:
base_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.r6
is_binary: False
kind:
merged_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
mime_type: None
my_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine
node_kind:
operation:
path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
property_name: None
reason:
src_left_version: {'node_kind': , 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': , 'repos_url': 'file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos'}
src_right_version: {'node_kind': , 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': , 'repos_url': 'file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos'}
their_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.r13
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_done /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_starting /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Updated to revision 13
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
CM file4.txt
? file4.txt.mine
? file4.txt.r13
? file4.txt.r6
D file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cp /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: resolved /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_done /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_starting /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Revision 14
Info: Testing - revert
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revert file5.txt
R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
Info: Testing - revproplist
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revproplist file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:author: barry
svn:date: 2013-08-04T20:52:53.113077Z
svn:log: resolve a confict part 2
Info: Testing - revpropget
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:log: resolve a confict part 2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget no_such_prop file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Revision: 14
no_such_prop: None
Info: Testing - revpropset
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropset svn:log Hello world file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - revpropdel
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropdel svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - status - see above
Info: Testing - relocate
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mkdir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: mv /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: a725e9e1-05ce-4aee-bc2f-739fe572ced8
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 04-Aug-2013 21:52:35
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: a725e9e1-05ce-4aee-bc2f-739fe572ced8
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 04-Aug-2013 21:52:35
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
Repository UUID: a725e9e1-05ce-4aee-bc2f-739fe572ced8
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 04-Aug-2013 21:52:40
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: a725e9e1-05ce-4aee-bc2f-739fe572ced8
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 04-Aug-2013 21:52:40
Info: Testing - switch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: a725e9e1-05ce-4aee-bc2f-739fe572ced8
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 04-Aug-2013 21:52:40
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: switch /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
Repository UUID: a725e9e1-05ce-4aee-bc2f-739fe572ced8
Revision: 14
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 8
Last Changed Date: 04-Aug-2013 21:52:42
Info: Testing - update - see above
Info: Testing - merge
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Checked out revision 14
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m add test merge files .
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Revision 15
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
Log message
--- -------
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder3
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
Updated to revision 16
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-3.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: rm file-merge-1.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m change test merge files .
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Revision 17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --dry-run --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_elide_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_record_info_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A + /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
===================================================================
--- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch (revision 16)
+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch (working copy)
Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r17
Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
Info: Command: /usr/local/bin/python3.3 /Users/barry/wc/svn/pysvn/Extension/Tests/test_01_set_get_tests.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
pysvn-1.8.0/Tests/test-01.unix.known_good-py3-svn1.9.log 000644 000771 000771 00000162670 12564665666 022101 0 ustar 00barry 000000 000000 WorkDir: /home/barry/wc/svn/pysvn-trunk/Extension
PYTHON: /bin/python3
Username: barry
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests
Info: Command: mkdir testroot-01
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests
Info: Command: cd testroot-01
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: Command: mkdir tmp
Info: PYSVN command /bin/python3 /home/barry/wc/svn/pysvn-trunk/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/configdir
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: Command: svnadmin create /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos
Info: Testing - mkdir
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
commit_finalizing .
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: pysvn command: mkdir file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
commit_finalizing .
Info: Testing - ls
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: pysvn command: ls file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos -v -R
2 barry 0 18-Aug-2015 18:22:21 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
2 barry 0 18-Aug-2015 18:22:21 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test
Info: Testing - checkout
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: pysvn command: checkout file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Checked out revision 2
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: Command: /bin/python3 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/find.py /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01
Info: Command: cd /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: Testing - add
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file1.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file2.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file3.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --force file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file5.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add file6.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file6.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: add --non-recursive folder3
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit added files
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file6.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/folder3
commit_finalizing .
Revision 3
Info: Setup to test access to deleted files
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit mod file
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file6.txt
commit_finalizing .
Revision 4
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: rm file6.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file6.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit delete file
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file6.txt
commit_finalizing .
Revision 5
Info: Testing - update - get a new wc that will update
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkout file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder3
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Checked out revision 5
Info: Testing - - checkin a mod from wc1
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin -m commit modified file
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file1.txt
commit_finalizing .
Revision 6
Info: Testing - update
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Updated to revision 6
Info: Testing - the rest in lexical order
Info: Testing - annotate
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2015-08-18T17:22:22.346241Z | test add file 1
1| r6 | barry | 2015-08-18T17:22:24.430361Z | line 2
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: annotate -r 3:4 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
A /trunk/test/file6.txt
A /trunk/test/file6.txt
0| r3 | barry | 2015-08-18T17:22:22.346241Z | test add file 6
1| r4 | barry | 2015-08-18T17:22:23.097528Z | test mod file 6
Info: Testing - cat
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r head file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
test add file 1
line 2
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: cat -r 4 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
test add file 6
test mod file 6
Info: Testing - cleanup
Info: Testing - copy
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: mkdir file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
commit_finalizing .
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/tags/version1
Log message
--- -------
commit_finalizing .
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/tags
8 barry 0 18-Aug-2015 18:22:25 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/tags/version1
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: copy /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: propset svn:eol-style native /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
property_added /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2 -m copy test
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
commit_finalizing .
Revision 9
Info: Testing - diff
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: diff /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Index: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
===================================================================
--- /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt (revision 9)
+++ /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Testing - export
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CR file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol LF file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: export --native-eol CRLF file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder3
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file1.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file1b.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file2.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file3.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file4.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/file5.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file1.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file1b.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file2.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file3.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file4.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/file5.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file1.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file1b.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file2.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file3.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file4.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/file5.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file1.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file1b.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file2.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file3.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file4.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/file5.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
Info: Testing - import
Info: Testing - info
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test
Repository UUID: 670eda03-abcd-42b0-9537-412eb854e6e9
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 18-Aug-2015 18:22:24
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
Name: file1.txt
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
Repository UUID: 670eda03-abcd-42b0-9537-412eb854e6e9
Revision: 6
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 18-Aug-2015 18:22:24
Text Last Updated: 18-Aug-2015 18:22:24
Checksum: d17a5219a23a23ce7f363b75e09ec043
Info: Testing - log
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: log /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
------------------------------------------------------------
rev 9: barry | 18-Aug-2015 18:22:26 | 1 lines
copy test
------------------------------------------------------------
rev 6: barry | 18-Aug-2015 18:22:24 | 1 lines
commit modified file
------------------------------------------------------------
rev 5: barry | 18-Aug-2015 18:22:23 | 1 lines
commit delete file
------------------------------------------------------------
rev 4: barry | 18-Aug-2015 18:22:23 | 1 lines
commit mod file
------------------------------------------------------------
rev 3: barry | 18-Aug-2015 18:22:22 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 18-Aug-2015 18:22:21 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 18-Aug-2015 18:22:20 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Testing - ls
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/folder1
file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test
6 barry 23 18-Aug-2015 18:22:24 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
9 barry 23 18-Aug-2015 18:22:26 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
3 barry 16 18-Aug-2015 18:22:22 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
3 barry 16 18-Aug-2015 18:22:22 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
3 barry 16 18-Aug-2015 18:22:22 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
3 barry 16 18-Aug-2015 18:22:22 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
3 barry 0 18-Aug-2015 18:22:22 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/folder1
3 barry 0 18-Aug-2015 18:22:22 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1
/home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: ls -v /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
6 barry 23 18-Aug-2015 18:22:24 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
9 barry 23 18-Aug-2015 18:22:26 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
3 barry 16 18-Aug-2015 18:22:22 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
3 barry 16 18-Aug-2015 18:22:22 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt
3 barry 16 18-Aug-2015 18:22:22 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
3 barry 16 18-Aug-2015 18:22:22 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
3 barry 0 18-Aug-2015 18:22:22 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1
3 barry 0 18-Aug-2015 18:22:22 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder3
Info: Testing - merge - done below
Info: Testing - mkdir - done above
Info: Testing - move
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
Log message
--- -------
commit_finalizing .
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: move /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2 -m move wc test
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
commit_finalizing .
Revision 11
Info: Testing - status
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file4.txt
commit_finalizing .
Revision 12
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --verbose /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
11 11 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
M 6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: update
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file2b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file3b.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file2.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file3.txt
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Updated to revision 12
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2b.txt
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: status --show-updates --verbose /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
M 6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
6 6 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1.txt
11 11 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
D 6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2b.txt
11 11 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
M 6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
6 3 barry /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/folder3
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test
Info: pysvn command: checkin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2 -m prop change
Nothing to commit
Info: Testing - propdel
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset test:prop1 del_me file4.txt
property_added /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propdel test:prop1 file4.txt
property_deleted /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Info: Testing - propget
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_added /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget svn:eol-style file4.txt
file4.txt: native
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propget unknown file4.txt
Info: Testing - proplist - see above
Info: Testing - propset
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: propset svn:eol-style native file4.txt
property_modified /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Testing - remove
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: remove file5.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
M file4.txt
D file5.txt
Info: Testing - resolved
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1/test/file4.txt
commit_finalizing .
Revision 13
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: update /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
callback_conflict_resolver
action:
base_file: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt.r6
is_binary: False
kind:
merged_file: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
mime_type: None
my_file: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt.mine
node_kind:
operation:
path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
property_name: None
reason:
src_left_version: {'node_kind': , 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': , 'repos_url': 'file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos'}
src_right_version: {'node_kind': , 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': , 'repos_url': 'file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos'}
their_file: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt.r13
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_done /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_starting /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Updated to revision 13
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
CM file4.txt
? file4.txt.mine
? file4.txt.r13
? file4.txt.r6
D file5.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: Command: cp /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: resolved /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
R /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_done /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
conflict_resolver_starting /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
commit_finalizing .
Revision 14
Info: Testing - revert
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revert file5.txt
R /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file5.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: status
Info: Testing - revproplist
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revproplist file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:author: barry
svn:date: 2015-08-18T17:22:31.627890Z
svn:log: resolve a confict part 2
Info: Testing - revpropget
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget svn:log file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Revision: 14
svn:log: resolve a confict part 2
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropget no_such_prop file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Revision: 14
no_such_prop: None
Info: Testing - revpropset
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropset svn:log Hello world file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - revpropdel
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: revpropdel svn:log file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Testing - status - see above
Info: Testing - relocate
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: Command: mkdir /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: Command: mv /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 670eda03-abcd-42b0-9537-412eb854e6e9
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 18-Aug-2015 18:22:21
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc1
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 670eda03-abcd-42b0-9537-412eb854e6e9
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 18-Aug-2015 18:22:21
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk
Repository UUID: 670eda03-abcd-42b0-9537-412eb854e6e9
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 18-Aug-2015 18:22:24
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: relocate file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/repos/trunk file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 670eda03-abcd-42b0-9537-412eb854e6e9
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 18-Aug-2015 18:22:24
Info: Testing - switch
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk
Repository UUID: 670eda03-abcd-42b0-9537-412eb854e6e9
Revision: 6
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 18-Aug-2015 18:22:24
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: switch /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/tags/version1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file1b.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file2b.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file3b.txt
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test/file4.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Path: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2
Name: .
Url: file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/tags/version1
Repository UUID: 670eda03-abcd-42b0-9537-412eb854e6e9
Revision: 14
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 8
Last Changed Date: 18-Aug-2015 18:22:25
Info: Testing - update - see above
Info: Testing - merge
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: pysvn command: checkout file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file2b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file3b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/folder3
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3
Checked out revision 14
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc2/test
Info: Command: cd /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m add test merge files .
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
commit_finalizing .
Revision 15
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: copy file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk/test file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk/test-branch
Log message
--- -------
commit_finalizing .
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: update /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/folder1
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/folder3
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3
update_started /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3
Updated to revision 16
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: add file-merge-3.txt
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: rm file-merge-1.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: commit -m change test merge files .
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
commit_finalizing .
Revision 17
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --dry-run --revision 16:17 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk/test /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
A /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
U /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_begin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
merge_completed /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
merge_elide_info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_record_info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
merge_record_info_begin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
merge_record_info_begin /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: merge --revision 16:17 file:///home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/root/repos/trunk/test /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
merge_completed /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: status /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
D /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
M /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
A + /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: pysvn command: diff /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
Index: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
===================================================================
--- /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (revision 16)
+++ /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt (nonexistent)
@@ -1 +0,0 @@
-test add file merge 1
Index: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
===================================================================
--- /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (revision 16)
+++ /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Index: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
===================================================================
Index: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
===================================================================
--- /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch (revision 16)
+++ /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch (working copy)
Property changes on: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
## -0,0 +0,1 ##
Merged /trunk/test:r17
Info: CWD: /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/wc3/test
Info: Command: /bin/python3 /home/barry/wc/svn/pysvn-trunk/Extension/Tests/test_01_set_get_tests.py /home/barry/wc/svn/pysvn-trunk/Extension/Tests/testroot-01/configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
pysvn-1.8.0/Tests/test-01.win32.known_good-py2-svn1.4.log 000644 000771 000771 00000050253 11253135715 022020 0 ustar 00barry 000000 000000 WorkDir: L:\wc\pysvn\trunk\pysvn\Extension
PYTHON: c:\python24\python.exe
Info: PYSVN CMD c:\python24\python.exe L:\wc\pysvn\trunk\pysvn\Extension\Examples\Client\svn_cmd.py --pysvn-testing 01.01.00 --config-dir b:\configdir
Info: CMD mkdir testroot-01
Info: CMD subst b: L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-01
Info: CMD cd /d b:\
Info: CMD svnadmin create b:\repos
Info: Test - mkdir
Info: PYSVN CMD mkdir file:///b:/repos/trunk -m "test-01 add trunk"
Info: PYSVN CMD mkdir file:///b:/repos/trunk/test -m "test-01 add test"
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos -v -R
2 barry 0 23-Sep-2006 16:04:57 file:///b:/repos/trunk
2 barry 0 23-Sep-2006 16:04:57 file:///b:/repos/trunk/test
Info: Test - checkout
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc1
A b:/wc1/test
U b:/wc1
Checked out revision 2
Info: CMD dir b:\wc1 /s /b /a-h
b:\wc1\test
b:\wc1\.svn\entries
b:\wc1\.svn\format
b:\wc1\.svn\prop-base
b:\wc1\.svn\props
b:\wc1\.svn\text-base
b:\wc1\.svn\tmp
b:\wc1\.svn\tmp\prop-base
b:\wc1\.svn\tmp\props
b:\wc1\.svn\tmp\text-base
b:\wc1\test\.svn\entries
b:\wc1\test\.svn\format
b:\wc1\test\.svn\prop-base
b:\wc1\test\.svn\props
b:\wc1\test\.svn\text-base
b:\wc1\test\.svn\tmp
b:\wc1\test\.svn\tmp\prop-base
b:\wc1\test\.svn\tmp\props
b:\wc1\test\.svn\tmp\text-base
Info: CMD cd /d b:\wc1\test
Info: Test - add
Info: Create File file1.txt - test add file 1
Info: Create File file2.txt - test add file 2
Info: Create File file3.txt - test add file 3
Info: Create File file4.txt - test add file 4
Info: Create File file5.txt - test add file 5
Info: PYSVN CMD add file1.txt
A file1.txt
Info: PYSVN CMD add file2.txt
A file2.txt
Info: PYSVN CMD add file3.txt
A file3.txt
Info: PYSVN CMD add file4.txt
A file4.txt
Info: PYSVN CMD add --force file5.txt
A file5.txt
Info: PYSVN CMD checkin -m "commit added files"
A test/file1.txt
A test/file2.txt
A test/file3.txt
A test/file4.txt
A test/file5.txt
Revision 3
Info: Test - update - get a new wc that will update
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc2
A b:/wc2/test
A b:/wc2/test/file1.txt
A b:/wc2/test/file2.txt
A b:/wc2/test/file3.txt
A b:/wc2/test/file4.txt
A b:/wc2/test/file5.txt
U b:/wc2
Checked out revision 3
Info: Test - - checkin a mod from wc1
Info: Append File b:\wc1\test\file1.txt - line 2
Info: PYSVN CMD checkin -m "commit modified file"
M test/file1.txt
Revision 4
Info: PYSVN CMD checkin -m "commit modified file"
Nothing to commit
Info: Test - update
Info: PYSVN CMD update b:\wc2
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file1.txt
Updated to revision 4
Info: Test - the rest in lexical order
Info: Test - annotate
Info: PYSVN CMD annotate b:\wc2\test\file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2006-09-23T15:05:00.862883Z | test add file 1
1| r4 | barry | 2006-09-23T15:05:02.665475Z | line 2
Info: Test - cat
Info: PYSVN CMD cat -r head file:///b:/repos/trunk/test/file1.txt
test add file 1
line 2
Info: Test - cleanup
Info: Test - copy
Info: PYSVN CMD mkdir file:///b:/repos/tags -m "test-01 add tags"
Info: Create File msg.tmp - tag the trunk
Info: PYSVN CMD copy file:///b:/repos/trunk file:///b:/repos/tags/version1
Log message
--- -------
Info: PYSVN CMD ls -v file:///b:/repos/tags
6 barry 0 23-Sep-2006 16:05:05 file:///b:/repos/tags/version1
Info: PYSVN CMD copy b:\wc2\test\file1.txt b:\wc2\test\file1b.txt
A b:/wc2/test/file1b.txt
Info: PYSVN CMD propset svn:eol-style native b:\wc2\test\file1b.txt
Info: PYSVN CMD checkin b:\wc2 -m "copy test"
A wc2/test/file1b.txt
Revision 7
Info: Test - diff
Info: Append File b:\wc2\test\file1b.txt - new line
Info: PYSVN CMD diff b:\wc2
Index: b:/wc2/test/file1b.txt
===================================================================
--- b:/wc2/test/file1b.txt (revision 7)
+++ b:/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Test - export
Info: PYSVN CMD export file:///b:/repos/trunk/test b:\export1.native
A b:\export1.native
A b:\export1.native/file1.txt
A b:\export1.native/file1b.txt
A b:\export1.native/file2.txt
A b:\export1.native/file3.txt
A b:\export1.native/file4.txt
A b:\export1.native/file5.txt
Info: PYSVN CMD export --native-eol CR file:///b:/repos/trunk/test b:\export1.cr
A b:\export1.cr
A b:\export1.cr/file1.txt
A b:\export1.cr/file1b.txt
A b:\export1.cr/file2.txt
A b:\export1.cr/file3.txt
A b:\export1.cr/file4.txt
A b:\export1.cr/file5.txt
Info: PYSVN CMD export --native-eol LF file:///b:/repos/trunk/test b:\export1.lf
A b:\export1.lf
A b:\export1.lf/file1.txt
A b:\export1.lf/file1b.txt
A b:\export1.lf/file2.txt
A b:\export1.lf/file3.txt
A b:\export1.lf/file4.txt
A b:\export1.lf/file5.txt
Info: PYSVN CMD export --native-eol CRLF file:///b:/repos/trunk/test b:\export1.crlf
A b:\export1.crlf
A b:\export1.crlf/file1.txt
A b:\export1.crlf/file1b.txt
A b:\export1.crlf/file2.txt
A b:\export1.crlf/file3.txt
A b:\export1.crlf/file4.txt
A b:\export1.crlf/file5.txt
Info: CMD dir /s /b b:\export1.native
b:\export1.native\file1.txt
b:\export1.native\file1b.txt
b:\export1.native\file2.txt
b:\export1.native\file3.txt
b:\export1.native\file4.txt
b:\export1.native\file5.txt
Info: CMD dir /s /b b:\export1.cr
b:\export1.cr\file1.txt
b:\export1.cr\file1b.txt
b:\export1.cr\file2.txt
b:\export1.cr\file3.txt
b:\export1.cr\file4.txt
b:\export1.cr\file5.txt
Info: CMD dir /s /b b:\export1.lf
b:\export1.lf\file1.txt
b:\export1.lf\file1b.txt
b:\export1.lf\file2.txt
b:\export1.lf\file3.txt
b:\export1.lf\file4.txt
b:\export1.lf\file5.txt
Info: CMD dir /s /b b:\export1.crlf
b:\export1.crlf\file1.txt
b:\export1.crlf\file1b.txt
b:\export1.crlf\file2.txt
b:\export1.crlf\file3.txt
b:\export1.crlf\file4.txt
b:\export1.crlf\file5.txt
Info: Test - import
Info: Test - info
Info: PYSVN CMD info b:\wc2\test
Path: b:\wc2\test
Name: .
Url: file:///b:/repos/trunk/test
Repository UUID: 83564c9e-9371-b04b-982f-e947ec829d1d
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 23-Sep-2006 16:05:02
Info: PYSVN CMD info b:\wc2\test\file1.txt
Path: b:\wc2\test\file1.txt
Name: file1.txt
Url: file:///b:/repos/trunk/test/file1.txt
Repository UUID: 83564c9e-9371-b04b-982f-e947ec829d1d
Revision: 4
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 23-Sep-2006 16:05:02
Text Last Updated: 23-Sep-2006 16:05:03
Checksum: cb0b37e264ebcc467e9f37a069e034d7
Info: Test - log
Info: PYSVN CMD log b:\wc2
------------------------------------------------------------
rev 7: barry | 23-Sep-2006 16:05:06 | 1 lines
copy test
------------------------------------------------------------
rev 4: barry | 23-Sep-2006 16:05:02 | 1 lines
commit modified file
------------------------------------------------------------
rev 3: barry | 23-Sep-2006 16:05:00 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 23-Sep-2006 16:04:57 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 23-Sep-2006 16:04:57 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos/trunk/test
file:///b:/repos/trunk/test/file1.txt
file:///b:/repos/trunk/test/file1b.txt
file:///b:/repos/trunk/test/file2.txt
file:///b:/repos/trunk/test/file3.txt
file:///b:/repos/trunk/test/file4.txt
file:///b:/repos/trunk/test/file5.txt
Info: PYSVN CMD ls -v file:///b:/repos/trunk/test
4 barry 25 23-Sep-2006 16:05:02 file:///b:/repos/trunk/test/file1.txt
7 barry 23 23-Sep-2006 16:05:06 file:///b:/repos/trunk/test/file1b.txt
3 barry 17 23-Sep-2006 16:05:00 file:///b:/repos/trunk/test/file2.txt
3 barry 17 23-Sep-2006 16:05:00 file:///b:/repos/trunk/test/file3.txt
3 barry 17 23-Sep-2006 16:05:00 file:///b:/repos/trunk/test/file4.txt
3 barry 17 23-Sep-2006 16:05:00 file:///b:/repos/trunk/test/file5.txt
Info: PYSVN CMD ls b:\wc2\test
b:/wc2/test/file1.txt
b:/wc2/test/file1b.txt
b:/wc2/test/file2.txt
b:/wc2/test/file3.txt
b:/wc2/test/file4.txt
b:/wc2/test/file5.txt
Info: PYSVN CMD ls -v b:\wc2\test
4 barry 25 23-Sep-2006 16:05:02 b:/wc2/test/file1.txt
7 barry 23 23-Sep-2006 16:05:06 b:/wc2/test/file1b.txt
3 barry 17 23-Sep-2006 16:05:00 b:/wc2/test/file2.txt
3 barry 17 23-Sep-2006 16:05:00 b:/wc2/test/file3.txt
3 barry 17 23-Sep-2006 16:05:00 b:/wc2/test/file4.txt
3 barry 17 23-Sep-2006 16:05:00 b:/wc2/test/file5.txt
Info: Test - merge - see below
Info: Test - mkdir - done above
Info: Test - move
Info: Create File msg.tmp - move url test
Info: PYSVN CMD move file:///b:/repos/trunk/test/file2.txt file:///b:/repos/trunk/test/file2b.txt
Log message
--- -------
Info: PYSVN CMD move b:\wc2\test\file3.txt b:\wc2\test\file3b.txt
A b:/wc2/test/file3b.txt
D b:/wc2/test/file3.txt
Info: PYSVN CMD checkin b:\wc2 -m "move wc test"
A wc2/test/file3b.txt
D wc2/test/file3.txt
M wc2/test/file1b.txt
Revision 9
Info: Test - status
Info: Append File b:\wc1\test\file4.txt - file 4 is changing
Info: PYSVN CMD checkin b:\wc1 -m "change wc1 for status -u to detect"
M test/file4.txt
Revision 10
Info: PYSVN CMD status b:\wc2
Info: PYSVN CMD status --verbose b:\wc2
4 4 barry b:\wc2
4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
4 3 barry b:\wc2\test\file2.txt
9 9 barry b:\wc2\test\file3b.txt
4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
Info: PYSVN CMD status --show-updates b:\wc2
M b:\wc2\test
D b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
M b:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry b:\wc2
M 4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
D 4 3 barry b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
9 9 barry b:\wc2\test\file3b.txt
M 4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
Info: PYSVN CMD update
A file1b.txt
A file2b.txt
A file3b.txt
D file2.txt
D file3.txt
Updated to revision 10
Info: PYSVN CMD status --show-updates b:\wc2
M b:\wc2\test
D b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
M b:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry b:\wc2
M 4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
D 4 3 barry b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
9 9 barry b:\wc2\test\file3b.txt
M 4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
Info: PYSVN CMD checkin b:\wc2 -m "prop change"
Nothing to commit
Info: Test - propdel
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD propset test:prop1 del_me file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: PYSVN CMD propdel test:prop1 file4.txt
Info: PYSVN CMD proplist -v file4.txt
Info: Test - propget
Info: PYSVN CMD propget svn:eol-style file4.txt
Info: Test - proplist - see above
Info: Test - propset
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD proplist -v file4.txt
Info: PYSVN CMD propset svn:eol-style native file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Test - remove
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD remove file5.txt
D file5.txt
Info: PYSVN CMD status
M file4.txt
D file5.txt
Info: Test - resolved
Info: Append File b:\wc1\test\file4.txt - conflict in file4 yes
Info: Append File b:\wc2\test\file4.txt - conflict in file4 no
Info: PYSVN CMD checkin b:\wc1\test -m "make a conflict part 1"
M wc1/test/file4.txt
Revision 11
Info: PYSVN CMD update b:\wc2\test
A b:/wc2/test/file2b.txt
D b:/wc2/test/file2.txt
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file4.txt
Updated to revision 11
Info: PYSVN CMD status
CM file4.txt
? file4.txt.mine
? file4.txt.r11
? file4.txt.r4
D file5.txt
Info: CMD copy b:\wc2\test\file4.txt.mine b:\wc2\test\file4.txt
1 file(s) copied.
Info: PYSVN CMD resolved b:\wc2\test\file4.txt
R b:/wc2/test/file4.txt
Info: PYSVN CMD checkin b:\wc2\test\file4.txt -m "resolve a confict part 2"
M file4.txt
Revision 12
Info: Test - revert
Info: PYSVN CMD revert file5.txt
R file5.txt
Info: PYSVN CMD status
Info: Test - revproplist
Info: PYSVN CMD revproplist file:///b:/repos/trunk
Revision: 12
svn:author: barry
svn:date: 2006-09-23T15:05:21.973238Z
svn:log: resolve a confict part 2
Info: Test - revpropget
Info: PYSVN CMD revpropget svn:log file:///b:/repos/trunk
Revision: 12
svn:log: resolve a confict part 2
Info: PYSVN CMD revpropget no_such_prop file:///b:/repos/trunk
Revision: 12
no_such_prop: None
Info: Test - revpropset
Info: PYSVN CMD revpropset svn:log "Hello world" file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - revpropdel
Info: PYSVN CMD revpropdel svn:log file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - status - see above
Info: Test - relocate
Info: CMD mkdir b:\root
Info: CMD move b:\repos b:\root
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///b:/repos/trunk
Repository UUID: 83564c9e-9371-b04b-982f-e947ec829d1d
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 23-Sep-2006 16:04:57
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc1
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///b:/root/repos/trunk
Repository UUID: 83564c9e-9371-b04b-982f-e947ec829d1d
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 23-Sep-2006 16:04:57
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///b:/repos/trunk
Repository UUID: 83564c9e-9371-b04b-982f-e947ec829d1d
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 23-Sep-2006 16:05:02
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc2
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///b:/root/repos/trunk
Repository UUID: 83564c9e-9371-b04b-982f-e947ec829d1d
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 23-Sep-2006 16:05:02
Info: Test - switch
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///b:/root/repos/trunk
Repository UUID: 83564c9e-9371-b04b-982f-e947ec829d1d
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 23-Sep-2006 16:05:02
Info: PYSVN CMD switch b:\wc2 file:///b:/root/repos/tags/version1
A b:/wc2/test/file2.txt
A b:/wc2/test/file3.txt
D b:/wc2/test/file1b.txt
D b:/wc2/test/file2b.txt
D b:/wc2/test/file3b.txt
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file4.txt
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///b:/root/repos/tags/version1
Repository UUID: 83564c9e-9371-b04b-982f-e947ec829d1d
Revision: 12
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 23-Sep-2006 16:05:05
Info: Test - update - see above
Info: Test - Info: Testing - merge
Info: PYSVN CMD checkout file:///b:/root/repos/trunk b:\wc3
A b:/wc3/test
A b:/wc3/test/file1.txt
A b:/wc3/test/file1b.txt
A b:/wc3/test/file2b.txt
A b:/wc3/test/file3b.txt
A b:/wc3/test/file4.txt
A b:/wc3/test/file5.txt
U b:/wc3
Checked out revision 12
Info: CMD cd b:\wc3\test
Info: Create File file-merge-1.txt - test add file merge 1
Info: Create File file-merge-2.txt - test add file merge 2
Info: PYSVN CMD add file-merge-1.txt
A file-merge-1.txt
Info: PYSVN CMD add file-merge-2.txt
A file-merge-2.txt
Info: PYSVN CMD commit -m "add test merge files" .
A test/file-merge-1.txt
A test/file-merge-2.txt
Revision 13
Info: Create File msg.tmp - make a branch
Info: PYSVN CMD copy file:///b:/root/repos/trunk/test file:///b:/root/repos/trunk/test-branch
Log message
--- -------
Info: PYSVN CMD update b:\wc3
A b:/wc3/test-branch
A b:/wc3/test-branch/file-merge-1.txt
A b:/wc3/test-branch/file-merge-2.txt
A b:/wc3/test-branch/file1.txt
A b:/wc3/test-branch/file1b.txt
A b:/wc3/test-branch/file2b.txt
A b:/wc3/test-branch/file3b.txt
A b:/wc3/test-branch/file4.txt
A b:/wc3/test-branch/file5.txt
U b:/wc3
U b:/wc3/test
Updated to revision 14
Info: Create File file-merge-3.txt - test add file merge 3
Info: PYSVN CMD add file-merge-3.txt
A file-merge-3.txt
Info: PYSVN CMD rm file-merge-1.txt
D file-merge-1.txt
Info: Append File file-merge-2.txt - modify merge 2
Info: PYSVN CMD commit -m "change test merge files" .
A test/file-merge-3.txt
D test/file-merge-1.txt
M test/file-merge-2.txt
Revision 15
Info: PYSVN CMD merge --dry-run --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
A b:/wc3/test-branch/file-merge-3.txt
D b:/wc3/test-branch/file-merge-1.txt
U b:/wc3/test-branch
U b:/wc3/test-branch/file-merge-2.txt
Info: PYSVN CMD merge --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
A b:/wc3/test-branch/file-merge-3.txt
U b:/wc3/test-branch
U b:/wc3/test-branch/file-merge-2.txt
skip b:/wc3/test-branch/file-merge-1.txt
Info: PYSVN CMD status b:\wc3\test-branch
D b:\wc3\test-branch\file-merge-1.txt
M b:\wc3\test-branch\file-merge-2.txt
A + b:\wc3\test-branch\file-merge-3.txt
Info: PYSVN CMD diff b:\wc3\test-branch
Index: b:/wc3/test-branch/file-merge-1.txt
===================================================================
--- b:/wc3/test-branch/file-merge-1.txt (revision 14)
+++ b:/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: b:/wc3/test-branch/file-merge-2.txt
===================================================================
--- b:/wc3/test-branch/file-merge-2.txt (revision 14)
+++ b:/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Info: CMD c:\python24\python.exe L:\wc\pysvn\trunk\pysvn\Extension\Tests\test_01_set_get_tests.py b:\configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Test - end
pysvn-1.8.0/Tests/test-01.win32.known_good-py2-svn1.5.log 000644 000771 000771 00000064570 11264414514 022027 0 ustar 00barry 000000 000000 WorkDir: C:\wc\pysvn\trunk\pysvn\Extension
PYTHON: c:\python26\python.exe
Username: barry
Info: PYSVN CMD c:\python26\python.exe C:\wc\pysvn\trunk\pysvn\Extension\Examples\Client\svn_cmd.py --pysvn-testing 01.01.00 --config-dir b:\configdir
Info: CMD mkdir testroot-01
Info: CMD subst b: C:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-01
Info: CMD cd /d b:\
Info: CMD svnadmin create b:\repos
Info: Test - mkdir
Info: PYSVN CMD mkdir file:///b:/repos/trunk -m "test-01 add trunk"
Info: PYSVN CMD mkdir file:///b:/repos/trunk/test -m "test-01 add test"
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos -v -R
2 barry 0 11-Oct-2009 18:15:41 file:///b:/repos/trunk
2 barry 0 11-Oct-2009 18:15:41 file:///b:/repos/trunk/test
Info: Test - checkout
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc1
A b:/wc1/test
U b:/wc1
Checked out revision 2
Info: CMD dir b:\wc1 /s /b /a-h
b:\wc1\test
b:\wc1\.svn\entries
b:\wc1\.svn\format
b:\wc1\.svn\prop-base
b:\wc1\.svn\props
b:\wc1\.svn\text-base
b:\wc1\.svn\tmp
b:\wc1\.svn\tmp\prop-base
b:\wc1\.svn\tmp\props
b:\wc1\.svn\tmp\text-base
b:\wc1\test\.svn\entries
b:\wc1\test\.svn\format
b:\wc1\test\.svn\prop-base
b:\wc1\test\.svn\props
b:\wc1\test\.svn\text-base
b:\wc1\test\.svn\tmp
b:\wc1\test\.svn\tmp\prop-base
b:\wc1\test\.svn\tmp\props
b:\wc1\test\.svn\tmp\text-base
Info: CMD cd /d b:\wc1\test
Info: Test - add
Info: Create File file1.txt - test add file 1
Info: Create File file2.txt - test add file 2
Info: Create File file3.txt - test add file 3
Info: Create File file4.txt - test add file 4
Info: Create File file5.txt - test add file 5
Info: CMD mkdir folder1
Info: Create File folder1\file7.txt - test add file 7
Info: CMD mkdir folder1\folder2
Info: Create File folder1\folder2\file8.txt - test add file 8
Info: CMD mkdir folder3
Info: Create File folder3\file9.txt - test add file 9
Info: CMD mkdir folder3\folder4
Info: Create File folder3\folder4\file10.txt - test add file 10
Info: PYSVN CMD add file1.txt
A file1.txt
Info: PYSVN CMD add file2.txt
A file2.txt
Info: PYSVN CMD add file3.txt
A file3.txt
Info: PYSVN CMD add file4.txt
A file4.txt
Info: PYSVN CMD add --force file5.txt
A file5.txt
Info: PYSVN CMD add folder1
A folder1
A folder1/file7.txt
A folder1/folder2
A folder1/folder2/file8.txt
Info: PYSVN CMD add --non-recursive folder3
A folder3
Info: PYSVN CMD checkin -m "commit added files"
A test/file1.txt
A test/file2.txt
A test/file3.txt
A test/file4.txt
A test/file5.txt
A test/folder1
A test/folder1/file7.txt
A test/folder1/folder2
A test/folder1/folder2/file8.txt
A test/folder3
Revision 3
Info: Test - update - get a new wc that will update
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc2
A b:/wc2/test
A b:/wc2/test/file1.txt
A b:/wc2/test/file2.txt
A b:/wc2/test/file3.txt
A b:/wc2/test/file4.txt
A b:/wc2/test/file5.txt
A b:/wc2/test/folder1
A b:/wc2/test/folder1/file7.txt
A b:/wc2/test/folder1/folder2
A b:/wc2/test/folder1/folder2/file8.txt
A b:/wc2/test/folder3
U b:/wc2
Checked out revision 3
Info: Test - - checkin a mod from wc1
Info: Append File b:\wc1\test\file1.txt - line 2
Info: PYSVN CMD checkin -m "commit modified file"
M test/file1.txt
Revision 4
Info: PYSVN CMD checkin -m "commit modified file"
Nothing to commit
Info: Test - update
Info: PYSVN CMD update b:\wc2
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file1.txt
Updated to revision 4
Info: Test - the rest in lexical order
Info: Test - annotate
Info: PYSVN CMD annotate b:\wc2\test\file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2009-10-11T17:15:47.458500Z | test add file 1
1| r4 | barry | 2009-10-11T17:15:49.692875Z | line 2
Info: Test - cat
Info: PYSVN CMD cat -r head file:///b:/repos/trunk/test/file1.txt
test add file 1
line 2
Info: Test - cleanup
Info: Test - copy
Info: PYSVN CMD mkdir file:///b:/repos/tags -m "test-01 add tags"
Info: Create File msg.tmp - tag the trunk
Info: PYSVN CMD copy file:///b:/repos/trunk file:///b:/repos/tags/version1
Log message
--- -------
Info: PYSVN CMD ls -v file:///b:/repos/tags
6 barry 0 11-Oct-2009 18:15:54 file:///b:/repos/tags/version1
Info: PYSVN CMD copy b:\wc2\test\file1.txt b:\wc2\test\file1b.txt
A b:/wc2/test/file1b.txt
Info: PYSVN CMD propset svn:eol-style native b:\wc2\test\file1b.txt
Info: PYSVN CMD checkin b:\wc2 -m "copy test"
A wc2/test/file1b.txt
Revision 7
Info: Test - diff
Info: Append File b:\wc2\test\file1b.txt - new line
Info: PYSVN CMD diff b:\wc2
Index: b:/wc2/test/file1b.txt
===================================================================
--- b:/wc2/test/file1b.txt (revision 7)
+++ b:/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Test - export
Info: PYSVN CMD export file:///b:/repos/trunk/test b:\export1.native
A b:\export1.native
A b:\export1.native/file1.txt
A b:\export1.native/file1b.txt
A b:\export1.native/file2.txt
A b:\export1.native/file3.txt
A b:\export1.native/file4.txt
A b:\export1.native/file5.txt
A b:\export1.native/folder1
A b:\export1.native/folder1/file7.txt
A b:\export1.native/folder1/folder2
A b:\export1.native/folder1/folder2/file8.txt
A b:\export1.native/folder3
Info: PYSVN CMD export --native-eol CR file:///b:/repos/trunk/test b:\export1.cr
A b:\export1.cr
A b:\export1.cr/file1.txt
A b:\export1.cr/file1b.txt
A b:\export1.cr/file2.txt
A b:\export1.cr/file3.txt
A b:\export1.cr/file4.txt
A b:\export1.cr/file5.txt
A b:\export1.cr/folder1
A b:\export1.cr/folder1/file7.txt
A b:\export1.cr/folder1/folder2
A b:\export1.cr/folder1/folder2/file8.txt
A b:\export1.cr/folder3
Info: PYSVN CMD export --native-eol LF file:///b:/repos/trunk/test b:\export1.lf
A b:\export1.lf
A b:\export1.lf/file1.txt
A b:\export1.lf/file1b.txt
A b:\export1.lf/file2.txt
A b:\export1.lf/file3.txt
A b:\export1.lf/file4.txt
A b:\export1.lf/file5.txt
A b:\export1.lf/folder1
A b:\export1.lf/folder1/file7.txt
A b:\export1.lf/folder1/folder2
A b:\export1.lf/folder1/folder2/file8.txt
A b:\export1.lf/folder3
Info: PYSVN CMD export --native-eol CRLF file:///b:/repos/trunk/test b:\export1.crlf
A b:\export1.crlf
A b:\export1.crlf/file1.txt
A b:\export1.crlf/file1b.txt
A b:\export1.crlf/file2.txt
A b:\export1.crlf/file3.txt
A b:\export1.crlf/file4.txt
A b:\export1.crlf/file5.txt
A b:\export1.crlf/folder1
A b:\export1.crlf/folder1/file7.txt
A b:\export1.crlf/folder1/folder2
A b:\export1.crlf/folder1/folder2/file8.txt
A b:\export1.crlf/folder3
Info: CMD dir /s /b b:\export1.native
b:\export1.native\file1.txt
b:\export1.native\file1b.txt
b:\export1.native\file2.txt
b:\export1.native\file3.txt
b:\export1.native\file4.txt
b:\export1.native\file5.txt
b:\export1.native\folder1
b:\export1.native\folder3
b:\export1.native\folder1\file7.txt
b:\export1.native\folder1\folder2
b:\export1.native\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.cr
b:\export1.cr\file1.txt
b:\export1.cr\file1b.txt
b:\export1.cr\file2.txt
b:\export1.cr\file3.txt
b:\export1.cr\file4.txt
b:\export1.cr\file5.txt
b:\export1.cr\folder1
b:\export1.cr\folder3
b:\export1.cr\folder1\file7.txt
b:\export1.cr\folder1\folder2
b:\export1.cr\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.lf
b:\export1.lf\file1.txt
b:\export1.lf\file1b.txt
b:\export1.lf\file2.txt
b:\export1.lf\file3.txt
b:\export1.lf\file4.txt
b:\export1.lf\file5.txt
b:\export1.lf\folder1
b:\export1.lf\folder3
b:\export1.lf\folder1\file7.txt
b:\export1.lf\folder1\folder2
b:\export1.lf\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.crlf
b:\export1.crlf\file1.txt
b:\export1.crlf\file1b.txt
b:\export1.crlf\file2.txt
b:\export1.crlf\file3.txt
b:\export1.crlf\file4.txt
b:\export1.crlf\file5.txt
b:\export1.crlf\folder1
b:\export1.crlf\folder3
b:\export1.crlf\folder1\file7.txt
b:\export1.crlf\folder1\folder2
b:\export1.crlf\folder1\folder2\file8.txt
Info: Test - import
Info: Test - info
Info: PYSVN CMD info b:\wc2\test
Path: b:\wc2\test
Name: .
Url: file:///b:/repos/trunk/test
Repository UUID: eb499e03-42bf-7843-84eb-c566f1c06fca
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 11-Oct-2009 18:15:49
Info: PYSVN CMD info b:\wc2\test\file1.txt
Path: b:\wc2\test\file1.txt
Name: file1.txt
Url: file:///b:/repos/trunk/test/file1.txt
Repository UUID: eb499e03-42bf-7843-84eb-c566f1c06fca
Revision: 4
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 11-Oct-2009 18:15:49
Text Last Updated: 11-Oct-2009 18:15:51
Checksum: cb0b37e264ebcc467e9f37a069e034d7
Info: Test - log
Info: PYSVN CMD log b:\wc2
------------------------------------------------------------
rev 7: barry | 11-Oct-2009 18:15:57 | 1 lines
copy test
------------------------------------------------------------
rev 4: barry | 11-Oct-2009 18:15:49 | 1 lines
commit modified file
------------------------------------------------------------
rev 3: barry | 11-Oct-2009 18:15:47 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 11-Oct-2009 18:15:41 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 11-Oct-2009 18:15:41 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos/trunk/test
file:///b:/repos/trunk/test/file1.txt
file:///b:/repos/trunk/test/file1b.txt
file:///b:/repos/trunk/test/file2.txt
file:///b:/repos/trunk/test/file3.txt
file:///b:/repos/trunk/test/file4.txt
file:///b:/repos/trunk/test/file5.txt
file:///b:/repos/trunk/test/folder1
file:///b:/repos/trunk/test/folder3
Info: PYSVN CMD ls -v file:///b:/repos/trunk/test
4 barry 25 11-Oct-2009 18:15:49 file:///b:/repos/trunk/test/file1.txt
7 barry 23 11-Oct-2009 18:15:57 file:///b:/repos/trunk/test/file1b.txt
3 barry 17 11-Oct-2009 18:15:47 file:///b:/repos/trunk/test/file2.txt
3 barry 17 11-Oct-2009 18:15:47 file:///b:/repos/trunk/test/file3.txt
3 barry 17 11-Oct-2009 18:15:47 file:///b:/repos/trunk/test/file4.txt
3 barry 17 11-Oct-2009 18:15:47 file:///b:/repos/trunk/test/file5.txt
3 barry 0 11-Oct-2009 18:15:47 file:///b:/repos/trunk/test/folder1
3 barry 0 11-Oct-2009 18:15:47 file:///b:/repos/trunk/test/folder3
Info: PYSVN CMD ls b:\wc2\test
b:/wc2/test/file1.txt
b:/wc2/test/file1b.txt
b:/wc2/test/file2.txt
b:/wc2/test/file3.txt
b:/wc2/test/file4.txt
b:/wc2/test/file5.txt
b:/wc2/test/folder1
b:/wc2/test/folder3
Info: PYSVN CMD ls -v b:\wc2\test
4 barry 25 11-Oct-2009 18:15:49 b:/wc2/test/file1.txt
7 barry 23 11-Oct-2009 18:15:57 b:/wc2/test/file1b.txt
3 barry 17 11-Oct-2009 18:15:47 b:/wc2/test/file2.txt
3 barry 17 11-Oct-2009 18:15:47 b:/wc2/test/file3.txt
3 barry 17 11-Oct-2009 18:15:47 b:/wc2/test/file4.txt
3 barry 17 11-Oct-2009 18:15:47 b:/wc2/test/file5.txt
3 barry 0 11-Oct-2009 18:15:47 b:/wc2/test/folder1
3 barry 0 11-Oct-2009 18:15:47 b:/wc2/test/folder3
Info: Test - merge - see below
Info: Test - mkdir - done above
Info: Test - move
Info: Create File msg.tmp - move url test
Info: PYSVN CMD move file:///b:/repos/trunk/test/file2.txt file:///b:/repos/trunk/test/file2b.txt
Log message
--- -------
Info: PYSVN CMD move b:\wc2\test\file3.txt b:\wc2\test\file3b.txt
A b:/wc2/test/file3b.txt
D b:/wc2/test/file3.txt
Info: PYSVN CMD checkin b:\wc2 -m "move wc test"
A wc2/test/file3b.txt
D wc2/test/file3.txt
M wc2/test/file1b.txt
Revision 9
Info: Test - status
Info: Append File b:\wc1\test\file4.txt - file 4 is changing
Info: PYSVN CMD checkin b:\wc1 -m "change wc1 for status -u to detect"
M test/file4.txt
Revision 10
Info: PYSVN CMD status b:\wc2
Info: PYSVN CMD status --verbose b:\wc2
4 4 barry b:\wc2
4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
4 3 barry b:\wc2\test\file2.txt
9 9 barry b:\wc2\test\file3b.txt
4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
4 3 barry b:\wc2\test\folder1
4 3 barry b:\wc2\test\folder1\file7.txt
4 3 barry b:\wc2\test\folder1\folder2
4 3 barry b:\wc2\test\folder1\folder2\file8.txt
4 3 barry b:\wc2\test\folder3
Info: PYSVN CMD status --show-updates b:\wc2
M b:\wc2\test
D b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
M b:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry b:\wc2
M 4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
D 4 3 barry b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
9 9 barry b:\wc2\test\file3b.txt
M 4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
4 3 barry b:\wc2\test\folder1
4 3 barry b:\wc2\test\folder1\file7.txt
4 3 barry b:\wc2\test\folder1\folder2
4 3 barry b:\wc2\test\folder1\folder2\file8.txt
4 3 barry b:\wc2\test\folder3
Info: PYSVN CMD update
A file1b.txt
A file2b.txt
A file3b.txt
D file2.txt
D file3.txt
Updated to revision 10
Info: PYSVN CMD status --show-updates b:\wc2
M b:\wc2\test
D b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
M b:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry b:\wc2
M 4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
D 4 3 barry b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
9 9 barry b:\wc2\test\file3b.txt
M 4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
4 3 barry b:\wc2\test\folder1
4 3 barry b:\wc2\test\folder1\file7.txt
4 3 barry b:\wc2\test\folder1\folder2
4 3 barry b:\wc2\test\folder1\folder2\file8.txt
4 3 barry b:\wc2\test\folder3
Info: PYSVN CMD checkin b:\wc2 -m "prop change"
Nothing to commit
Info: Test - propdel
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD propset test:prop1 del_me file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: PYSVN CMD propdel test:prop1 file4.txt
Info: PYSVN CMD proplist -v file4.txt
Info: Test - propget
Info: PYSVN CMD propget svn:eol-style file4.txt
Info: Test - proplist - see above
Info: Test - propset
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD proplist -v file4.txt
Info: PYSVN CMD propset svn:eol-style native file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Test - remove
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD remove file5.txt
D file5.txt
Info: PYSVN CMD status
M file4.txt
D file5.txt
Info: Test - resolved
Info: Append File b:\wc1\test\file4.txt - conflict in file4 yes
Info: Append File b:\wc2\test\file4.txt - conflict in file4 no
Info: PYSVN CMD checkin b:\wc1\test -m "make a conflict part 1"
M wc1/test/file4.txt
Revision 11
Info: PYSVN CMD update b:\wc2\test
callback_conflict_resolver
action:
base_file: u'b:\\wc2\\test\\.svn\\text-base\\file4.txt.svn-base'
is_binary: False
kind:
merged_file: u'b:\\wc2\\test\\.svn\\tmp\\tempfile.3.tmp'
mime_type: None
my_file: u'b:\\wc2\\test\\.svn\\tmp\\tempfile.2.tmp'
node_kind:
path: 'b:/wc2/test/file4.txt'
property_name: None
reason:
their_file: u'b:\\wc2\\test\\.svn\\tmp\\text-base\\file4.txt.svn-base'
A b:/wc2/test/file2b.txt
D b:/wc2/test/file2.txt
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file4.txt
Updated to revision 11
Info: PYSVN CMD status
CM file4.txt
? file4.txt.mine
? file4.txt.r11
? file4.txt.r4
D file5.txt
Info: CMD copy b:\wc2\test\file4.txt.mine b:\wc2\test\file4.txt
1 file(s) copied.
Info: PYSVN CMD resolved b:\wc2\test\file4.txt
R b:/wc2/test/file4.txt
Info: PYSVN CMD checkin b:\wc2\test\file4.txt -m "resolve a confict part 2"
M file4.txt
Revision 12
Info: Test - revert
Info: PYSVN CMD revert file5.txt
R file5.txt
Info: PYSVN CMD status
Info: Test - revproplist
Info: PYSVN CMD revproplist file:///b:/repos/trunk
Revision: 12
svn:author: barry
svn:date: 2009-10-11T17:16:21.646000Z
svn:log: resolve a confict part 2
Info: Test - revpropget
Info: PYSVN CMD revpropget svn:log file:///b:/repos/trunk
Revision: 12
svn:log: resolve a confict part 2
Info: PYSVN CMD revpropget no_such_prop file:///b:/repos/trunk
Revision: 12
no_such_prop: None
Info: Test - revpropset
Info: PYSVN CMD revpropset svn:log "Hello world" file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - revpropdel
Info: PYSVN CMD revpropdel svn:log file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - status - see above
Info: Test - relocate
Info: CMD mkdir b:\root
Info: CMD move b:\repos b:\root
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///b:/repos/trunk
Repository UUID: eb499e03-42bf-7843-84eb-c566f1c06fca
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 11-Oct-2009 18:15:41
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc1
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///b:/root/repos/trunk
Repository UUID: eb499e03-42bf-7843-84eb-c566f1c06fca
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 11-Oct-2009 18:15:41
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///b:/repos/trunk
Repository UUID: eb499e03-42bf-7843-84eb-c566f1c06fca
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 11-Oct-2009 18:15:49
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc2
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///b:/root/repos/trunk
Repository UUID: eb499e03-42bf-7843-84eb-c566f1c06fca
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 11-Oct-2009 18:15:49
Info: Test - switch
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///b:/root/repos/trunk
Repository UUID: eb499e03-42bf-7843-84eb-c566f1c06fca
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 11-Oct-2009 18:15:49
Info: PYSVN CMD switch b:\wc2 file:///b:/root/repos/tags/version1
A b:/wc2/test/file2.txt
A b:/wc2/test/file3.txt
D b:/wc2/test/file1b.txt
D b:/wc2/test/file2b.txt
D b:/wc2/test/file3b.txt
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file4.txt
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///b:/root/repos/tags/version1
Repository UUID: eb499e03-42bf-7843-84eb-c566f1c06fca
Revision: 12
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 11-Oct-2009 18:15:54
Info: Test - update - see above
Info: Test - Info: Testing - merge
Info: PYSVN CMD checkout file:///b:/root/repos/trunk b:\wc3
A b:/wc3/test
A b:/wc3/test/file1.txt
A b:/wc3/test/file1b.txt
A b:/wc3/test/file2b.txt
A b:/wc3/test/file3b.txt
A b:/wc3/test/file4.txt
A b:/wc3/test/file5.txt
A b:/wc3/test/folder1
A b:/wc3/test/folder1/file7.txt
A b:/wc3/test/folder1/folder2
A b:/wc3/test/folder1/folder2/file8.txt
A b:/wc3/test/folder3
U b:/wc3
Checked out revision 12
Info: CMD cd b:\wc3\test
Info: Create File file-merge-1.txt - test add file merge 1
Info: Create File file-merge-2.txt - test add file merge 2
Info: PYSVN CMD add file-merge-1.txt
A file-merge-1.txt
Info: PYSVN CMD add file-merge-2.txt
A file-merge-2.txt
Info: PYSVN CMD commit -m "add test merge files" .
A test/file-merge-1.txt
A test/file-merge-2.txt
Revision 13
Info: Create File msg.tmp - make a branch
Info: PYSVN CMD copy file:///b:/root/repos/trunk/test file:///b:/root/repos/trunk/test-branch
Log message
--- -------
Info: PYSVN CMD update b:\wc3
A b:/wc3/test-branch
A b:/wc3/test-branch/file-merge-1.txt
A b:/wc3/test-branch/file-merge-2.txt
A b:/wc3/test-branch/file1.txt
A b:/wc3/test-branch/file1b.txt
A b:/wc3/test-branch/file2b.txt
A b:/wc3/test-branch/file3b.txt
A b:/wc3/test-branch/file4.txt
A b:/wc3/test-branch/file5.txt
A b:/wc3/test-branch/folder1
A b:/wc3/test-branch/folder1/file7.txt
A b:/wc3/test-branch/folder1/folder2
A b:/wc3/test-branch/folder1/folder2/file8.txt
A b:/wc3/test-branch/folder3
U b:/wc3
U b:/wc3/test
Updated to revision 14
Info: Create File file-merge-3.txt - test add file merge 3
Info: PYSVN CMD add file-merge-3.txt
A file-merge-3.txt
Info: PYSVN CMD rm file-merge-1.txt
D file-merge-1.txt
Info: Append File file-merge-2.txt - modify merge 2
Info: PYSVN CMD commit -m "change test merge files" .
A test/file-merge-3.txt
D test/file-merge-1.txt
M test/file-merge-2.txt
Revision 15
Info: PYSVN CMD merge --dry-run --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
A b:/wc3/test-branch/file-merge-3.txt
D b:/wc3/test-branch/file-merge-1.txt
U b:/wc3/test-branch
U b:/wc3/test-branch/file-merge-2.txt
merge_begin b:/wc3/test-branch
merge_begin b:/wc3/test-branch/file-merge-2.txt
Info: PYSVN CMD merge --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
U b:/wc3/test-branch
Info: PYSVN CMD status b:\wc3\test-branch
M b:\wc3\test-branch
D b:\wc3\test-branch\file-merge-1.txt
MM b:\wc3\test-branch\file-merge-2.txt
A + b:\wc3\test-branch\file-merge-3.txt
M b:\wc3\test-branch\file1.txt
M b:\wc3\test-branch\file1b.txt
M b:\wc3\test-branch\file2b.txt
M b:\wc3\test-branch\file3b.txt
M b:\wc3\test-branch\file4.txt
M b:\wc3\test-branch\file5.txt
Info: PYSVN CMD diff b:\wc3\test-branch
Property changes on: b:\wc3\test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r15*
Property changes on: b:\wc3\test-branch\file1b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1b.txt:r15
Property changes on: b:\wc3\test-branch\file2b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file2b.txt:r15
Property changes on: b:\wc3\test-branch\file4.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file4.txt:r15
Property changes on: b:\wc3\test-branch\file3b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file3b.txt:r15
Property changes on: b:\wc3\test-branch\file5.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file5.txt:r15
Index: b:/wc3/test-branch/file-merge-1.txt
===================================================================
--- b:/wc3/test-branch/file-merge-1.txt (revision 14)
+++ b:/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: b:/wc3/test-branch/file-merge-2.txt
===================================================================
--- b:/wc3/test-branch/file-merge-2.txt (revision 14)
+++ b:/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Property changes on: b:\wc3\test-branch\file-merge-2.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-2.txt:r15
Property changes on: b:\wc3\test-branch\file-merge-3.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-3.txt:r15
Property changes on: b:\wc3\test-branch\file1.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1.txt:r15
Info: CMD c:\python26\python.exe C:\wc\pysvn\trunk\pysvn\Extension\Tests\test_01_set_get_tests.py b:\configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Test - end
pysvn-1.8.0/Tests/test-01.win32.known_good-py2-svn1.6.log 000644 000771 000771 00000065302 12052506061 022015 0 ustar 00barry 000000 000000 WorkDir: C:\wc\svn\pysvn\Extension
PYTHON: c:\python27.win32\python.exe
Username: barry
Info: PYSVN CMD c:\python27.win32\python.exe C:\wc\svn\pysvn\Extension\Examples\Client\svn_cmd.py --pysvn-testing 01.01.00 --config-dir b:\configdir
Info: CMD mkdir testroot-01
Info: CMD subst b: C:\wc\svn\pysvn\Extension\Tests\testroot-01
Info: CMD cd /d b:\
Info: CMD svnadmin create b:\repos
Info: Test - mkdir
Info: PYSVN CMD mkdir file:///b:/repos/trunk -m "test-01 add trunk"
Info: PYSVN CMD mkdir file:///b:/repos/trunk/test -m "test-01 add test"
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos -v -R
2 barry 0 19-Nov-2012 19:40:28 file:///B:/repos/trunk
2 barry 0 19-Nov-2012 19:40:28 file:///B:/repos/trunk/test
Info: Test - checkout
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc1
A b:/wc1/test
U b:/wc1
Checked out revision 2
Info: CMD dir b:\wc1 /s /b /a-h
b:\wc1\test
b:\wc1\.svn\entries
b:\wc1\.svn\prop-base
b:\wc1\.svn\props
b:\wc1\.svn\text-base
b:\wc1\.svn\tmp
b:\wc1\.svn\tmp\prop-base
b:\wc1\.svn\tmp\props
b:\wc1\.svn\tmp\text-base
b:\wc1\test\.svn\entries
b:\wc1\test\.svn\prop-base
b:\wc1\test\.svn\props
b:\wc1\test\.svn\text-base
b:\wc1\test\.svn\tmp
b:\wc1\test\.svn\tmp\prop-base
b:\wc1\test\.svn\tmp\props
b:\wc1\test\.svn\tmp\text-base
Info: CMD cd /d b:\wc1\test
Info: Test - add
Info: Create File file1.txt - test add file 1
Info: Create File file2.txt - test add file 2
Info: Create File file3.txt - test add file 3
Info: Create File file4.txt - test add file 4
Info: Create File file5.txt - test add file 5
Info: CMD mkdir folder1
Info: Create File folder1\file7.txt - test add file 7
Info: CMD mkdir folder1\folder2
Info: Create File folder1\folder2\file8.txt - test add file 8
Info: CMD mkdir folder3
Info: Create File folder3\file9.txt - test add file 9
Info: CMD mkdir folder3\folder4
Info: Create File folder3\folder4\file10.txt - test add file 10
Info: PYSVN CMD add file1.txt
A file1.txt
Info: PYSVN CMD add file2.txt
A file2.txt
Info: PYSVN CMD add file3.txt
A file3.txt
Info: PYSVN CMD add file4.txt
A file4.txt
Info: PYSVN CMD add --force file5.txt
A file5.txt
Info: PYSVN CMD add folder1
A folder1
A folder1/file7.txt
A folder1/folder2
A folder1/folder2/file8.txt
Info: PYSVN CMD add --non-recursive folder3
A folder3
Info: PYSVN CMD checkin -m "commit added files"
A b:/wc1/test/file1.txt
A b:/wc1/test/file2.txt
A b:/wc1/test/file3.txt
A b:/wc1/test/file4.txt
A b:/wc1/test/file5.txt
A b:/wc1/test/folder1
A b:/wc1/test/folder1/file7.txt
A b:/wc1/test/folder1/folder2
A b:/wc1/test/folder1/folder2/file8.txt
A b:/wc1/test/folder3
Revision 3
Info: Test - update - get a new wc that will update
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc2
A b:/wc2/test
A b:/wc2/test/file1.txt
A b:/wc2/test/file2.txt
A b:/wc2/test/file3.txt
A b:/wc2/test/file4.txt
A b:/wc2/test/file5.txt
A b:/wc2/test/folder1
A b:/wc2/test/folder1/file7.txt
A b:/wc2/test/folder1/folder2
A b:/wc2/test/folder1/folder2/file8.txt
A b:/wc2/test/folder3
U b:/wc2
Checked out revision 3
Info: Test - - checkin a mod from wc1
Info: Append File b:\wc1\test\file1.txt - line 2
Info: PYSVN CMD checkin -m "commit modified file"
M b:/wc1/test/file1.txt
Revision 4
Info: PYSVN CMD checkin -m "commit modified file"
Nothing to commit
Info: Test - update
Info: PYSVN CMD update b:\wc2
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file1.txt
Updated to revision 4
Info: Test - the rest in lexical order
Info: Test - annotate
Info: PYSVN CMD annotate b:\wc2\test\file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2012-11-19T19:40:29.036834Z | test add file 1
1| r4 | barry | 2012-11-19T19:40:29.395599Z | line 2
Info: Test - cat
Info: PYSVN CMD cat -r head file:///b:/repos/trunk/test/file1.txt
test add file 1
line 2
Info: Test - cleanup
Info: Test - copy
Info: PYSVN CMD mkdir file:///b:/repos/tags -m "test-01 add tags"
Info: Create File msg.tmp - tag the trunk
Info: PYSVN CMD copy file:///b:/repos/trunk file:///b:/repos/tags/version1
Log message
--- -------
Info: PYSVN CMD ls -v file:///b:/repos/tags
6 barry 0 19-Nov-2012 19:40:29 file:///B:/repos/tags/version1
Info: PYSVN CMD copy b:\wc2\test\file1.txt b:\wc2\test\file1b.txt
A b:/wc2/test/file1b.txt
Info: PYSVN CMD propset svn:eol-style native b:\wc2\test\file1b.txt
property_added b:/wc2/test/file1b.txt
Info: PYSVN CMD checkin b:\wc2 -m "copy test"
A B:/wc2/test/file1b.txt
Revision 7
Info: Test - diff
Info: Append File b:\wc2\test\file1b.txt - new line
Info: PYSVN CMD diff b:\wc2
Index: b:/wc2/test/file1b.txt
===================================================================
--- b:/wc2/test/file1b.txt (revision 7)
+++ b:/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Test - export
Info: PYSVN CMD export file:///b:/repos/trunk/test b:\export1.native
A b:\export1.native
A b:\export1.native/file1.txt
A b:\export1.native/file1b.txt
A b:\export1.native/file2.txt
A b:\export1.native/file3.txt
A b:\export1.native/file4.txt
A b:\export1.native/file5.txt
A b:\export1.native/folder1
A b:\export1.native/folder1/file7.txt
A b:\export1.native/folder1/folder2
A b:\export1.native/folder1/folder2/file8.txt
A b:\export1.native/folder3
Info: PYSVN CMD export --native-eol CR file:///b:/repos/trunk/test b:\export1.cr
A b:\export1.cr
A b:\export1.cr/file1.txt
A b:\export1.cr/file1b.txt
A b:\export1.cr/file2.txt
A b:\export1.cr/file3.txt
A b:\export1.cr/file4.txt
A b:\export1.cr/file5.txt
A b:\export1.cr/folder1
A b:\export1.cr/folder1/file7.txt
A b:\export1.cr/folder1/folder2
A b:\export1.cr/folder1/folder2/file8.txt
A b:\export1.cr/folder3
Info: PYSVN CMD export --native-eol LF file:///b:/repos/trunk/test b:\export1.lf
A b:\export1.lf
A b:\export1.lf/file1.txt
A b:\export1.lf/file1b.txt
A b:\export1.lf/file2.txt
A b:\export1.lf/file3.txt
A b:\export1.lf/file4.txt
A b:\export1.lf/file5.txt
A b:\export1.lf/folder1
A b:\export1.lf/folder1/file7.txt
A b:\export1.lf/folder1/folder2
A b:\export1.lf/folder1/folder2/file8.txt
A b:\export1.lf/folder3
Info: PYSVN CMD export --native-eol CRLF file:///b:/repos/trunk/test b:\export1.crlf
A b:\export1.crlf
A b:\export1.crlf/file1.txt
A b:\export1.crlf/file1b.txt
A b:\export1.crlf/file2.txt
A b:\export1.crlf/file3.txt
A b:\export1.crlf/file4.txt
A b:\export1.crlf/file5.txt
A b:\export1.crlf/folder1
A b:\export1.crlf/folder1/file7.txt
A b:\export1.crlf/folder1/folder2
A b:\export1.crlf/folder1/folder2/file8.txt
A b:\export1.crlf/folder3
Info: CMD dir /s /b b:\export1.native
b:\export1.native\file1.txt
b:\export1.native\file1b.txt
b:\export1.native\file2.txt
b:\export1.native\file3.txt
b:\export1.native\file4.txt
b:\export1.native\file5.txt
b:\export1.native\folder1
b:\export1.native\folder3
b:\export1.native\folder1\file7.txt
b:\export1.native\folder1\folder2
b:\export1.native\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.cr
b:\export1.cr\file1.txt
b:\export1.cr\file1b.txt
b:\export1.cr\file2.txt
b:\export1.cr\file3.txt
b:\export1.cr\file4.txt
b:\export1.cr\file5.txt
b:\export1.cr\folder1
b:\export1.cr\folder3
b:\export1.cr\folder1\file7.txt
b:\export1.cr\folder1\folder2
b:\export1.cr\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.lf
b:\export1.lf\file1.txt
b:\export1.lf\file1b.txt
b:\export1.lf\file2.txt
b:\export1.lf\file3.txt
b:\export1.lf\file4.txt
b:\export1.lf\file5.txt
b:\export1.lf\folder1
b:\export1.lf\folder3
b:\export1.lf\folder1\file7.txt
b:\export1.lf\folder1\folder2
b:\export1.lf\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.crlf
b:\export1.crlf\file1.txt
b:\export1.crlf\file1b.txt
b:\export1.crlf\file2.txt
b:\export1.crlf\file3.txt
b:\export1.crlf\file4.txt
b:\export1.crlf\file5.txt
b:\export1.crlf\folder1
b:\export1.crlf\folder3
b:\export1.crlf\folder1\file7.txt
b:\export1.crlf\folder1\folder2
b:\export1.crlf\folder1\folder2\file8.txt
Info: Test - import
Info: Test - info
Info: PYSVN CMD info b:\wc2\test
Path: b:\wc2\test
Name: .
Url: file:///B:/repos/trunk/test
Repository UUID: 9eb97a17-a9fb-4948-9ff9-1a389399bc26
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 19-Nov-2012 19:40:29
Info: PYSVN CMD info b:\wc2\test\file1.txt
Path: b:\wc2\test\file1.txt
Name: file1.txt
Url: file:///B:/repos/trunk/test/file1.txt
Repository UUID: 9eb97a17-a9fb-4948-9ff9-1a389399bc26
Revision: 4
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 19-Nov-2012 19:40:29
Text Last Updated: 19-Nov-2012 19:40:29
Checksum: cb0b37e264ebcc467e9f37a069e034d7
Info: Test - log
Info: PYSVN CMD log b:\wc2
------------------------------------------------------------
rev 7: barry | 19-Nov-2012 19:40:30 | 1 lines
copy test
------------------------------------------------------------
rev 4: barry | 19-Nov-2012 19:40:29 | 1 lines
commit modified file
------------------------------------------------------------
rev 3: barry | 19-Nov-2012 19:40:29 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 19-Nov-2012 19:40:28 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 19-Nov-2012 19:40:28 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos/trunk/test
file:///B:/repos/trunk/test/file1.txt
file:///B:/repos/trunk/test/file1b.txt
file:///B:/repos/trunk/test/file2.txt
file:///B:/repos/trunk/test/file3.txt
file:///B:/repos/trunk/test/file4.txt
file:///B:/repos/trunk/test/file5.txt
file:///B:/repos/trunk/test/folder1
file:///B:/repos/trunk/test/folder3
Info: PYSVN CMD ls -v file:///b:/repos/trunk/test
4 barry 25 19-Nov-2012 19:40:29 file:///B:/repos/trunk/test/file1.txt
7 barry 23 19-Nov-2012 19:40:30 file:///B:/repos/trunk/test/file1b.txt
3 barry 17 19-Nov-2012 19:40:29 file:///B:/repos/trunk/test/file2.txt
3 barry 17 19-Nov-2012 19:40:29 file:///B:/repos/trunk/test/file3.txt
3 barry 17 19-Nov-2012 19:40:29 file:///B:/repos/trunk/test/file4.txt
3 barry 17 19-Nov-2012 19:40:29 file:///B:/repos/trunk/test/file5.txt
3 barry 0 19-Nov-2012 19:40:29 file:///B:/repos/trunk/test/folder1
3 barry 0 19-Nov-2012 19:40:29 file:///B:/repos/trunk/test/folder3
Info: PYSVN CMD ls b:\wc2\test
b:/wc2/test/file1.txt
b:/wc2/test/file1b.txt
b:/wc2/test/file2.txt
b:/wc2/test/file3.txt
b:/wc2/test/file4.txt
b:/wc2/test/file5.txt
b:/wc2/test/folder1
b:/wc2/test/folder3
Info: PYSVN CMD ls -v b:\wc2\test
4 barry 25 19-Nov-2012 19:40:29 b:/wc2/test/file1.txt
7 barry 23 19-Nov-2012 19:40:30 b:/wc2/test/file1b.txt
3 barry 17 19-Nov-2012 19:40:29 b:/wc2/test/file2.txt
3 barry 17 19-Nov-2012 19:40:29 b:/wc2/test/file3.txt
3 barry 17 19-Nov-2012 19:40:29 b:/wc2/test/file4.txt
3 barry 17 19-Nov-2012 19:40:29 b:/wc2/test/file5.txt
3 barry 0 19-Nov-2012 19:40:29 b:/wc2/test/folder1
3 barry 0 19-Nov-2012 19:40:29 b:/wc2/test/folder3
Info: Test - merge - see below
Info: Test - mkdir - done above
Info: Test - move
Info: Create File msg.tmp - move url test
Info: PYSVN CMD move file:///b:/repos/trunk/test/file2.txt file:///b:/repos/trunk/test/file2b.txt
Log message
--- -------
Info: PYSVN CMD move b:\wc2\test\file3.txt b:\wc2\test\file3b.txt
A b:/wc2/test/file3b.txt
D b:/wc2/test/file3.txt
Info: PYSVN CMD checkin b:\wc2 -m "move wc test"
A B:/wc2/test/file3b.txt
D B:/wc2/test/file3.txt
M B:/wc2/test/file1b.txt
Revision 9
Info: Test - status
Info: Append File b:\wc1\test\file4.txt - file 4 is changing
Info: PYSVN CMD checkin b:\wc1 -m "change wc1 for status -u to detect"
M B:/wc1/test/file4.txt
Revision 10
Info: PYSVN CMD status b:\wc2
Info: PYSVN CMD status --verbose b:\wc2
4 4 barry b:\wc2
4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
4 3 barry b:\wc2\test\file2.txt
9 9 barry b:\wc2\test\file3b.txt
4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
4 3 barry b:\wc2\test\folder1
4 3 barry b:\wc2\test\folder1\file7.txt
4 3 barry b:\wc2\test\folder1\folder2
4 3 barry b:\wc2\test\folder1\folder2\file8.txt
4 3 barry b:\wc2\test\folder3
Info: PYSVN CMD status --show-updates b:\wc2
M b:\wc2\test
D b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
M b:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry b:\wc2
M 4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
D 4 3 barry b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
9 9 barry b:\wc2\test\file3b.txt
M 4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
4 3 barry b:\wc2\test\folder1
4 3 barry b:\wc2\test\folder1\file7.txt
4 3 barry b:\wc2\test\folder1\folder2
4 3 barry b:\wc2\test\folder1\folder2\file8.txt
4 3 barry b:\wc2\test\folder3
Info: PYSVN CMD update
A file1b.txt
A file2b.txt
A file3b.txt
D file2.txt
D file3.txt
Updated to revision 10
Info: PYSVN CMD status --show-updates b:\wc2
M b:\wc2\test
D b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
M b:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry b:\wc2
M 4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
D 4 3 barry b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
9 9 barry b:\wc2\test\file3b.txt
M 4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
4 3 barry b:\wc2\test\folder1
4 3 barry b:\wc2\test\folder1\file7.txt
4 3 barry b:\wc2\test\folder1\folder2
4 3 barry b:\wc2\test\folder1\folder2\file8.txt
4 3 barry b:\wc2\test\folder3
Info: PYSVN CMD checkin b:\wc2 -m "prop change"
Nothing to commit
Info: Test - propdel
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD propset test:prop1 del_me file4.txt
property_added file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: PYSVN CMD propdel test:prop1 file4.txt
property_deleted file4.txt
Info: PYSVN CMD proplist -v file4.txt
Info: Test - propget
Info: PYSVN CMD propget svn:eol-style file4.txt
Info: Test - proplist - see above
Info: Test - propset
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD proplist -v file4.txt
Info: PYSVN CMD propset svn:eol-style native file4.txt
property_added file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Test - remove
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD remove file5.txt
D file5.txt
Info: PYSVN CMD status
M file4.txt
D file5.txt
Info: Test - resolved
Info: Append File b:\wc1\test\file4.txt - conflict in file4 yes
Info: Append File b:\wc2\test\file4.txt - conflict in file4 no
Info: PYSVN CMD checkin b:\wc1\test -m "make a conflict part 1"
M B:/wc1/test/file4.txt
Revision 11
Info: PYSVN CMD update b:\wc2\test
callback_conflict_resolver
action:
base_file: b:\wc2\test\.svn\text-base\file4.txt.svn-base
is_binary: False
kind:
merged_file: b:\wc2\test\.svn\tmp\file4.txt.tmp
mime_type: None
my_file: b:\wc2\test\.svn\tmp\svn-D6E25BC5
node_kind:
operation:
path: b:/wc2/test/file4.txt
property_name: None
reason:
src_left_version: None
src_right_version: None
their_file: b:\wc2\test\.svn\tmp\text-base\file4.txt.svn-base
A b:/wc2/test/file2b.txt
D b:/wc2/test/file2.txt
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file4.txt
Updated to revision 11
Info: PYSVN CMD status
CM file4.txt
? file4.txt.mine
? file4.txt.r11
? file4.txt.r4
D file5.txt
Info: CMD copy b:\wc2\test\file4.txt.mine b:\wc2\test\file4.txt
1 file(s) copied.
Info: PYSVN CMD resolved b:\wc2\test\file4.txt
R b:/wc2/test/file4.txt
Info: PYSVN CMD checkin b:\wc2\test\file4.txt -m "resolve a confict part 2"
M B:/wc2/test/file4.txt
Revision 12
Info: Test - revert
Info: PYSVN CMD revert file5.txt
R file5.txt
Info: PYSVN CMD status
Info: Test - revproplist
Info: PYSVN CMD revproplist file:///b:/repos/trunk
Revision: 12
svn:author: barry
svn:date: 2012-11-19T19:40:33.529202Z
svn:log: resolve a confict part 2
Info: Test - revpropget
Info: PYSVN CMD revpropget svn:log file:///b:/repos/trunk
Revision: 12
svn:log: resolve a confict part 2
Info: PYSVN CMD revpropget no_such_prop file:///b:/repos/trunk
Revision: 12
no_such_prop: None
Info: Test - revpropset
Info: PYSVN CMD revpropset svn:log "Hello world" file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - revpropdel
Info: PYSVN CMD revpropdel svn:log file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - status - see above
Info: Test - relocate
Info: CMD mkdir b:\root
Info: CMD move b:\repos b:\root
1 dir(s) moved.
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///B:/repos/trunk
Repository UUID: 9eb97a17-a9fb-4948-9ff9-1a389399bc26
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 19-Nov-2012 19:40:28
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc1
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 9eb97a17-a9fb-4948-9ff9-1a389399bc26
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 19-Nov-2012 19:40:28
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/repos/trunk
Repository UUID: 9eb97a17-a9fb-4948-9ff9-1a389399bc26
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 19-Nov-2012 19:40:29
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc2
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 9eb97a17-a9fb-4948-9ff9-1a389399bc26
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 19-Nov-2012 19:40:29
Info: Test - switch
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 9eb97a17-a9fb-4948-9ff9-1a389399bc26
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 19-Nov-2012 19:40:29
Info: PYSVN CMD switch b:\wc2 file:///b:/root/repos/tags/version1
A b:/wc2/test/file2.txt
A b:/wc2/test/file3.txt
D b:/wc2/test/file1b.txt
D b:/wc2/test/file2b.txt
D b:/wc2/test/file3b.txt
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file4.txt
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/tags/version1
Repository UUID: 9eb97a17-a9fb-4948-9ff9-1a389399bc26
Revision: 12
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 19-Nov-2012 19:40:29
Info: Test - update - see above
Info: Test - Info: Testing - merge
Info: PYSVN CMD checkout file:///b:/root/repos/trunk b:\wc3
A b:/wc3/test
A b:/wc3/test/file1.txt
A b:/wc3/test/file1b.txt
A b:/wc3/test/file2b.txt
A b:/wc3/test/file3b.txt
A b:/wc3/test/file4.txt
A b:/wc3/test/file5.txt
A b:/wc3/test/folder1
A b:/wc3/test/folder1/file7.txt
A b:/wc3/test/folder1/folder2
A b:/wc3/test/folder1/folder2/file8.txt
A b:/wc3/test/folder3
U b:/wc3
Checked out revision 12
Info: CMD cd b:\wc3\test
Info: Create File file-merge-1.txt - test add file merge 1
Info: Create File file-merge-2.txt - test add file merge 2
Info: PYSVN CMD add file-merge-1.txt
A file-merge-1.txt
Info: PYSVN CMD add file-merge-2.txt
A file-merge-2.txt
Info: PYSVN CMD commit -m "add test merge files" .
A b:/wc3/test/file-merge-1.txt
A b:/wc3/test/file-merge-2.txt
Revision 13
Info: Create File msg.tmp - make a branch
Info: PYSVN CMD copy file:///b:/root/repos/trunk/test file:///b:/root/repos/trunk/test-branch
Log message
--- -------
Info: PYSVN CMD update b:\wc3
A b:/wc3/test-branch
A b:/wc3/test-branch/file-merge-1.txt
A b:/wc3/test-branch/file-merge-2.txt
A b:/wc3/test-branch/file1.txt
A b:/wc3/test-branch/file1b.txt
A b:/wc3/test-branch/file2b.txt
A b:/wc3/test-branch/file3b.txt
A b:/wc3/test-branch/file4.txt
A b:/wc3/test-branch/file5.txt
A b:/wc3/test-branch/folder1
A b:/wc3/test-branch/folder1/file7.txt
A b:/wc3/test-branch/folder1/folder2
A b:/wc3/test-branch/folder1/folder2/file8.txt
A b:/wc3/test-branch/folder3
U b:/wc3
U b:/wc3/test
Updated to revision 14
Info: Create File file-merge-3.txt - test add file merge 3
Info: PYSVN CMD add file-merge-3.txt
A file-merge-3.txt
Info: PYSVN CMD rm file-merge-1.txt
D file-merge-1.txt
Info: Append File file-merge-2.txt - modify merge 2
Info: PYSVN CMD commit -m "change test merge files" .
A b:/wc3/test/file-merge-3.txt
D b:/wc3/test/file-merge-1.txt
M b:/wc3/test/file-merge-2.txt
Revision 15
Info: PYSVN CMD merge --dry-run --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
A b:/wc3/test-branch/file-merge-3.txt
D b:/wc3/test-branch/file-merge-1.txt
U b:/wc3/test-branch
U b:/wc3/test-branch/file-merge-2.txt
merge_begin b:/wc3/test-branch
merge_begin b:/wc3/test-branch/file-merge-2.txt
merge_completed b:/wc3/test-branch
Info: PYSVN CMD merge --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
merge_completed b:/wc3/test-branch
Info: PYSVN CMD status b:\wc3\test-branch
M b:\wc3\test-branch
D b:\wc3\test-branch\file-merge-1.txt
MM b:\wc3\test-branch\file-merge-2.txt
A + b:\wc3\test-branch\file-merge-3.txt
M b:\wc3\test-branch\file1.txt
M b:\wc3\test-branch\file1b.txt
M b:\wc3\test-branch\file2b.txt
M b:\wc3\test-branch\file3b.txt
M b:\wc3\test-branch\file4.txt
M b:\wc3\test-branch\file5.txt
Info: PYSVN CMD diff b:\wc3\test-branch
Property changes on: b:\wc3\test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r15*
Property changes on: b:\wc3\test-branch\file1b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1b.txt:r15
Property changes on: b:\wc3\test-branch\file2b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file2b.txt:r15
Property changes on: b:\wc3\test-branch\file4.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file4.txt:r15
Property changes on: b:\wc3\test-branch\file3b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file3b.txt:r15
Property changes on: b:\wc3\test-branch\file5.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file5.txt:r15
Index: b:/wc3/test-branch/file-merge-1.txt
===================================================================
--- b:/wc3/test-branch/file-merge-1.txt (revision 14)
+++ b:/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: b:/wc3/test-branch/file-merge-2.txt
===================================================================
--- b:/wc3/test-branch/file-merge-2.txt (revision 14)
+++ b:/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Property changes on: b:\wc3\test-branch\file-merge-2.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-2.txt:r15
Property changes on: b:\wc3\test-branch\file-merge-3.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-3.txt:r15
Property changes on: b:\wc3\test-branch\file1.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1.txt:r15
Info: CMD c:\python27.win32\python.exe C:\wc\svn\pysvn\Extension\Tests\test_01_set_get_tests.py b:\configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Test - end
pysvn-1.8.0/Tests/test-01.win32.known_good-py2-svn1.7.log 000644 000771 000771 00000064263 12164357546 022043 0 ustar 00barry 000000 000000 WorkDir: C:\wc\svn\pysvn\Extension
PYTHON: c:\python27.win32\python.exe
Username: barry
Info: PYSVN CMD c:\python27.win32\python.exe C:\wc\svn\pysvn\Extension\Examples\Client\svn_cmd.py --pysvn-testing 01.01.00 --config-dir b:\configdir
Info: CMD mkdir testroot-01
Info: CMD subst b: C:\wc\svn\pysvn\Extension\Tests\testroot-01
Info: CMD cd /d b:\
Info: CMD svnadmin create b:\repos
Info: Test - mkdir
Info: PYSVN CMD mkdir file:///b:/repos/trunk -m "test-01 add trunk"
Info: PYSVN CMD mkdir file:///b:/repos/trunk/test -m "test-01 add test"
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos -v -R
2 barry 0 01-Jul-2013 20:42:16 file:///B:/repos/trunk
2 barry 0 01-Jul-2013 20:42:16 file:///B:/repos/trunk/test
Info: Test - checkout
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc1
A B:/wc1/test
U B:/wc1
update_started B:/wc1
Checked out revision 2
Info: CMD dir b:\wc1 /s /b /a-h
b:\wc1\test
b:\wc1\.svn\entries
b:\wc1\.svn\format
b:\wc1\.svn\pristine
b:\wc1\.svn\tmp
b:\wc1\.svn\wc.db
Info: CMD cd /d b:\wc1\test
Info: Test - add
Info: Create File file1.txt - test add file 1
Info: Create File file2.txt - test add file 2
Info: Create File file3.txt - test add file 3
Info: Create File file4.txt - test add file 4
Info: Create File file5.txt - test add file 5
Info: CMD mkdir folder1
Info: Create File folder1\file7.txt - test add file 7
Info: CMD mkdir folder1\folder2
Info: Create File folder1\folder2\file8.txt - test add file 8
Info: CMD mkdir folder3
Info: Create File folder3\file9.txt - test add file 9
Info: CMD mkdir folder3\folder4
Info: Create File folder3\folder4\file10.txt - test add file 10
Info: PYSVN CMD add file1.txt
A B:/wc1/test/file1.txt
Info: PYSVN CMD add file2.txt
A B:/wc1/test/file2.txt
Info: PYSVN CMD add file3.txt
A B:/wc1/test/file3.txt
Info: PYSVN CMD add file4.txt
A B:/wc1/test/file4.txt
Info: PYSVN CMD add --force file5.txt
A B:/wc1/test/file5.txt
Info: PYSVN CMD add folder1
A B:/wc1/test/folder1
A B:/wc1/test/folder1/file7.txt
A B:/wc1/test/folder1/folder2
A B:/wc1/test/folder1/folder2/file8.txt
Info: PYSVN CMD add --non-recursive folder3
A B:/wc1/test/folder3
Info: PYSVN CMD checkin -m "commit added files"
A B:/wc1/test/file1.txt
A B:/wc1/test/file2.txt
A B:/wc1/test/file3.txt
A B:/wc1/test/file4.txt
A B:/wc1/test/file5.txt
A B:/wc1/test/folder1
A B:/wc1/test/folder1/file7.txt
A B:/wc1/test/folder1/folder2
A B:/wc1/test/folder1/folder2/file8.txt
A B:/wc1/test/folder3
Revision 3
Info: Test - update - get a new wc that will update
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc2
A B:/wc2/test
A B:/wc2/test/file1.txt
A B:/wc2/test/file2.txt
A B:/wc2/test/file3.txt
A B:/wc2/test/file4.txt
A B:/wc2/test/file5.txt
A B:/wc2/test/folder1
A B:/wc2/test/folder1/file7.txt
A B:/wc2/test/folder1/folder2
A B:/wc2/test/folder1/folder2/file8.txt
A B:/wc2/test/folder3
U B:/wc2
update_started B:/wc2
Checked out revision 3
Info: Test - - checkin a mod from wc1
Info: Append File b:\wc1\test\file1.txt - line 2
Info: PYSVN CMD checkin -m "commit modified file"
M B:/wc1/test/file1.txt
Revision 4
Info: PYSVN CMD checkin -m "commit modified file"
Nothing to commit
Info: Test - update
Info: PYSVN CMD update b:\wc2
U B:/wc2
U B:/wc2/test
U B:/wc2/test/file1.txt
update_started B:/wc2
Updated to revision 4
Info: Test - the rest in lexical order
Info: Test - annotate
Info: PYSVN CMD annotate b:\wc2\test\file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2013-07-01T19:42:17.538382Z | test add file 1
1| r4 | barry | 2013-07-01T19:42:17.990544Z | line 2
Info: Test - cat
Info: PYSVN CMD cat -r head file:///b:/repos/trunk/test/file1.txt
test add file 1
line 2
Info: Test - cleanup
Info: Test - copy
Info: PYSVN CMD mkdir file:///b:/repos/tags -m "test-01 add tags"
Info: Create File msg.tmp - tag the trunk
Info: PYSVN CMD copy file:///b:/repos/trunk file:///b:/repos/tags/version1
Log message
--- -------
Info: PYSVN CMD ls -v file:///b:/repos/tags
6 barry 0 01-Jul-2013 20:42:18 file:///B:/repos/tags/version1
Info: PYSVN CMD copy b:\wc2\test\file1.txt b:\wc2\test\file1b.txt
A B:/wc2/test/file1b.txt
Info: PYSVN CMD propset svn:eol-style native b:\wc2\test\file1b.txt
property_added B:/wc2/test/file1b.txt
Info: PYSVN CMD checkin b:\wc2 -m "copy test"
A B:/wc2/test/file1b.txt
Revision 7
Info: Test - diff
Info: Append File b:\wc2\test\file1b.txt - new line
Info: PYSVN CMD diff b:\wc2
Index: B:/wc2/test/file1b.txt
===================================================================
--- B:/wc2/test/file1b.txt (revision 7)
+++ B:/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Test - export
Info: PYSVN CMD export file:///b:/repos/trunk/test b:\export1.native
A b:\export1.native
A b:\export1.native/file1.txt
A b:\export1.native/file1b.txt
A b:\export1.native/file2.txt
A b:\export1.native/file3.txt
A b:\export1.native/file4.txt
A b:\export1.native/file5.txt
A b:\export1.native/folder1
A b:\export1.native/folder1/file7.txt
A b:\export1.native/folder1/folder2
A b:\export1.native/folder1/folder2/file8.txt
A b:\export1.native/folder3
Info: PYSVN CMD export --native-eol CR file:///b:/repos/trunk/test b:\export1.cr
A b:\export1.cr
A b:\export1.cr/file1.txt
A b:\export1.cr/file1b.txt
A b:\export1.cr/file2.txt
A b:\export1.cr/file3.txt
A b:\export1.cr/file4.txt
A b:\export1.cr/file5.txt
A b:\export1.cr/folder1
A b:\export1.cr/folder1/file7.txt
A b:\export1.cr/folder1/folder2
A b:\export1.cr/folder1/folder2/file8.txt
A b:\export1.cr/folder3
Info: PYSVN CMD export --native-eol LF file:///b:/repos/trunk/test b:\export1.lf
A b:\export1.lf
A b:\export1.lf/file1.txt
A b:\export1.lf/file1b.txt
A b:\export1.lf/file2.txt
A b:\export1.lf/file3.txt
A b:\export1.lf/file4.txt
A b:\export1.lf/file5.txt
A b:\export1.lf/folder1
A b:\export1.lf/folder1/file7.txt
A b:\export1.lf/folder1/folder2
A b:\export1.lf/folder1/folder2/file8.txt
A b:\export1.lf/folder3
Info: PYSVN CMD export --native-eol CRLF file:///b:/repos/trunk/test b:\export1.crlf
A b:\export1.crlf
A b:\export1.crlf/file1.txt
A b:\export1.crlf/file1b.txt
A b:\export1.crlf/file2.txt
A b:\export1.crlf/file3.txt
A b:\export1.crlf/file4.txt
A b:\export1.crlf/file5.txt
A b:\export1.crlf/folder1
A b:\export1.crlf/folder1/file7.txt
A b:\export1.crlf/folder1/folder2
A b:\export1.crlf/folder1/folder2/file8.txt
A b:\export1.crlf/folder3
Info: CMD dir /s /b b:\export1.native
b:\export1.native\file1.txt
b:\export1.native\file1b.txt
b:\export1.native\file2.txt
b:\export1.native\file3.txt
b:\export1.native\file4.txt
b:\export1.native\file5.txt
b:\export1.native\folder1
b:\export1.native\folder3
b:\export1.native\folder1\file7.txt
b:\export1.native\folder1\folder2
b:\export1.native\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.cr
b:\export1.cr\file1.txt
b:\export1.cr\file1b.txt
b:\export1.cr\file2.txt
b:\export1.cr\file3.txt
b:\export1.cr\file4.txt
b:\export1.cr\file5.txt
b:\export1.cr\folder1
b:\export1.cr\folder3
b:\export1.cr\folder1\file7.txt
b:\export1.cr\folder1\folder2
b:\export1.cr\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.lf
b:\export1.lf\file1.txt
b:\export1.lf\file1b.txt
b:\export1.lf\file2.txt
b:\export1.lf\file3.txt
b:\export1.lf\file4.txt
b:\export1.lf\file5.txt
b:\export1.lf\folder1
b:\export1.lf\folder3
b:\export1.lf\folder1\file7.txt
b:\export1.lf\folder1\folder2
b:\export1.lf\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.crlf
b:\export1.crlf\file1.txt
b:\export1.crlf\file1b.txt
b:\export1.crlf\file2.txt
b:\export1.crlf\file3.txt
b:\export1.crlf\file4.txt
b:\export1.crlf\file5.txt
b:\export1.crlf\folder1
b:\export1.crlf\folder3
b:\export1.crlf\folder1\file7.txt
b:\export1.crlf\folder1\folder2
b:\export1.crlf\folder1\folder2\file8.txt
Info: Test - import
Info: Test - info
Info: PYSVN CMD info b:\wc2\test
Path: b:\wc2\test
Name: .
Url: file:///B:/repos/trunk/test
Repository UUID: 875316d8-f5b2-3e4b-a71b-9ac7f05a849a
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 01-Jul-2013 20:42:17
Info: PYSVN CMD info b:\wc2\test\file1.txt
Path: b:\wc2\test\file1.txt
Name: file1.txt
Url: file:///B:/repos/trunk/test/file1.txt
Repository UUID: 875316d8-f5b2-3e4b-a71b-9ac7f05a849a
Revision: 4
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 01-Jul-2013 20:42:17
Text Last Updated: 01-Jul-2013 20:42:18
Checksum: cb0b37e264ebcc467e9f37a069e034d7
Info: Test - log
Info: PYSVN CMD log b:\wc2
------------------------------------------------------------
rev 7: barry | 01-Jul-2013 20:42:18 | 1 lines
copy test
------------------------------------------------------------
rev 4: barry | 01-Jul-2013 20:42:17 | 1 lines
commit modified file
------------------------------------------------------------
rev 3: barry | 01-Jul-2013 20:42:17 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 01-Jul-2013 20:42:16 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 01-Jul-2013 20:42:16 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos/trunk/test
file:///B:/repos/trunk/test/file1.txt
file:///B:/repos/trunk/test/file1b.txt
file:///B:/repos/trunk/test/file2.txt
file:///B:/repos/trunk/test/file3.txt
file:///B:/repos/trunk/test/file4.txt
file:///B:/repos/trunk/test/file5.txt
file:///B:/repos/trunk/test/folder1
file:///B:/repos/trunk/test/folder3
Info: PYSVN CMD ls -v file:///b:/repos/trunk/test
4 barry 25 01-Jul-2013 20:42:17 file:///B:/repos/trunk/test/file1.txt
7 barry 23 01-Jul-2013 20:42:18 file:///B:/repos/trunk/test/file1b.txt
3 barry 17 01-Jul-2013 20:42:17 file:///B:/repos/trunk/test/file2.txt
3 barry 17 01-Jul-2013 20:42:17 file:///B:/repos/trunk/test/file3.txt
3 barry 17 01-Jul-2013 20:42:17 file:///B:/repos/trunk/test/file4.txt
3 barry 17 01-Jul-2013 20:42:17 file:///B:/repos/trunk/test/file5.txt
3 barry 0 01-Jul-2013 20:42:17 file:///B:/repos/trunk/test/folder1
3 barry 0 01-Jul-2013 20:42:17 file:///B:/repos/trunk/test/folder3
Info: PYSVN CMD ls b:\wc2\test
B:/wc2/test/file1.txt
B:/wc2/test/file1b.txt
B:/wc2/test/file2.txt
B:/wc2/test/file3.txt
B:/wc2/test/file4.txt
B:/wc2/test/file5.txt
B:/wc2/test/folder1
B:/wc2/test/folder3
Info: PYSVN CMD ls -v b:\wc2\test
4 barry 25 01-Jul-2013 20:42:17 B:/wc2/test/file1.txt
7 barry 23 01-Jul-2013 20:42:18 B:/wc2/test/file1b.txt
3 barry 17 01-Jul-2013 20:42:17 B:/wc2/test/file2.txt
3 barry 17 01-Jul-2013 20:42:17 B:/wc2/test/file3.txt
3 barry 17 01-Jul-2013 20:42:17 B:/wc2/test/file4.txt
3 barry 17 01-Jul-2013 20:42:17 B:/wc2/test/file5.txt
3 barry 0 01-Jul-2013 20:42:17 B:/wc2/test/folder1
3 barry 0 01-Jul-2013 20:42:17 B:/wc2/test/folder3
Info: Test - merge - see below
Info: Test - mkdir - done above
Info: Test - move
Info: Create File msg.tmp - move url test
Info: PYSVN CMD move file:///b:/repos/trunk/test/file2.txt file:///b:/repos/trunk/test/file2b.txt
Log message
--- -------
Info: PYSVN CMD move b:\wc2\test\file3.txt b:\wc2\test\file3b.txt
A B:/wc2/test/file3b.txt
D B:/wc2/test/file3.txt
Info: PYSVN CMD checkin b:\wc2 -m "move wc test"
A B:/wc2/test/file3b.txt
D B:/wc2/test/file3.txt
M B:/wc2/test/file1b.txt
Revision 9
Info: Test - status
Info: Append File b:\wc1\test\file4.txt - file 4 is changing
Info: PYSVN CMD checkin b:\wc1 -m "change wc1 for status -u to detect"
M B:/wc1/test/file4.txt
Revision 10
Info: PYSVN CMD status b:\wc2
Info: PYSVN CMD status --verbose b:\wc2
4 4 barry B:\wc2
4 4 barry B:\wc2\test
4 4 barry B:\wc2\test\file1.txt
9 9 barry B:\wc2\test\file1b.txt
4 3 barry B:\wc2\test\file2.txt
9 9 barry B:\wc2\test\file3b.txt
4 3 barry B:\wc2\test\file4.txt
4 3 barry B:\wc2\test\file5.txt
4 3 barry B:\wc2\test\folder1
4 3 barry B:\wc2\test\folder1\file7.txt
4 3 barry B:\wc2\test\folder1\folder2
4 3 barry B:\wc2\test\folder1\folder2\file8.txt
4 3 barry B:\wc2\test\folder3
Info: PYSVN CMD status --show-updates b:\wc2
M B:\wc2\test
D B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
M B:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry B:\wc2
M 4 4 barry B:\wc2\test
4 4 barry B:\wc2\test\file1.txt
9 9 barry B:\wc2\test\file1b.txt
D 4 3 barry B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
9 9 barry B:\wc2\test\file3b.txt
M 4 3 barry B:\wc2\test\file4.txt
4 3 barry B:\wc2\test\file5.txt
4 3 barry B:\wc2\test\folder1
4 3 barry B:\wc2\test\folder1\file7.txt
4 3 barry B:\wc2\test\folder1\folder2
4 3 barry B:\wc2\test\folder1\folder2\file8.txt
4 3 barry B:\wc2\test\folder3
Info: PYSVN CMD update
A B:/wc1/test/file1b.txt
A B:/wc1/test/file2b.txt
A B:/wc1/test/file3b.txt
D B:/wc1/test/file2.txt
D B:/wc1/test/file3.txt
U B:/wc1
U B:/wc1/test
update_started B:/wc1/test
Updated to revision 10
Info: PYSVN CMD status --show-updates b:\wc2
M B:\wc2\test
D B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
M B:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry B:\wc2
M 4 4 barry B:\wc2\test
4 4 barry B:\wc2\test\file1.txt
9 9 barry B:\wc2\test\file1b.txt
D 4 3 barry B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
9 9 barry B:\wc2\test\file3b.txt
M 4 3 barry B:\wc2\test\file4.txt
4 3 barry B:\wc2\test\file5.txt
4 3 barry B:\wc2\test\folder1
4 3 barry B:\wc2\test\folder1\file7.txt
4 3 barry B:\wc2\test\folder1\folder2
4 3 barry B:\wc2\test\folder1\folder2\file8.txt
4 3 barry B:\wc2\test\folder3
Info: PYSVN CMD checkin b:\wc2 -m "prop change"
Nothing to commit
Info: Test - propdel
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD propset test:prop1 del_me file4.txt
property_added B:/wc2/test/file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: PYSVN CMD propdel test:prop1 file4.txt
property_deleted B:/wc2/test/file4.txt
Info: PYSVN CMD proplist -v file4.txt
Info: Test - propget
Info: PYSVN CMD propget svn:eol-style file4.txt
Info: Test - proplist - see above
Info: Test - propset
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD proplist -v file4.txt
Info: PYSVN CMD propset svn:eol-style native file4.txt
property_added B:/wc2/test/file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Test - remove
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD remove file5.txt
D B:/wc2/test/file5.txt
Info: PYSVN CMD status
MM file4.txt
D file5.txt
Info: Test - resolved
Info: Append File b:\wc1\test\file4.txt - conflict in file4 yes
Info: Append File b:\wc2\test\file4.txt - conflict in file4 no
Info: PYSVN CMD checkin b:\wc1\test -m "make a conflict part 1"
M B:/wc1/test/file4.txt
Revision 11
Info: PYSVN CMD update b:\wc2\test
callback_conflict_resolver
action:
base_file: B:\wc2\.svn\pristine\4e\4e86be31cda02c6a3fb50fe49d570555a9c28d66.svn-base
is_binary: False
kind:
merged_file: B:\wc2\.svn\tmp\file4.txt.tmp
mime_type: None
my_file: B:\wc2\.svn\tmp\svn-BDA3CF31
node_kind:
operation:
path: B:/wc2/test/file4.txt
property_name: None
reason:
src_left_version: None
src_right_version: None
their_file: B:\wc2\.svn\pristine\68\68429c38aebed8d3491b3f4a50041ad273e78cf7.svn-base
A B:/wc2/test/file2b.txt
D B:/wc2/test/file2.txt
U B:/wc2
U B:/wc2/test
U B:/wc2/test/file4.txt
update_started B:/wc2/test
Updated to revision 11
Info: PYSVN CMD status
CM file4.txt
? file4.txt.mine
? file4.txt.r11
? file4.txt.r4
D file5.txt
Info: CMD copy b:\wc2\test\file4.txt.mine b:\wc2\test\file4.txt
1 file(s) copied.
Info: PYSVN CMD resolved b:\wc2\test\file4.txt
R B:/wc2/test/file4.txt
Info: PYSVN CMD checkin b:\wc2\test\file4.txt -m "resolve a confict part 2"
M B:/wc2/test/file4.txt
Revision 12
Info: Test - revert
Info: PYSVN CMD revert file5.txt
R B:/wc2/test/file5.txt
Info: PYSVN CMD status
Info: Test - revproplist
Info: PYSVN CMD revproplist file:///b:/repos/trunk
Revision: 12
svn:author: barry
svn:date: 2013-07-01T19:42:22.247106Z
svn:log: resolve a confict part 2
Info: Test - revpropget
Info: PYSVN CMD revpropget svn:log file:///b:/repos/trunk
Revision: 12
svn:log: resolve a confict part 2
Info: PYSVN CMD revpropget no_such_prop file:///b:/repos/trunk
Revision: 12
no_such_prop: None
Info: Test - revpropset
Info: PYSVN CMD revpropset svn:log "Hello world" file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - revpropdel
Info: PYSVN CMD revpropdel svn:log file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - status - see above
Info: Test - relocate
Info: CMD mkdir b:\root
Info: CMD move b:\repos b:\root
1 dir(s) moved.
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///B:/repos/trunk
Repository UUID: 875316d8-f5b2-3e4b-a71b-9ac7f05a849a
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 01-Jul-2013 20:42:16
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc1
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 875316d8-f5b2-3e4b-a71b-9ac7f05a849a
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 01-Jul-2013 20:42:16
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/repos/trunk
Repository UUID: 875316d8-f5b2-3e4b-a71b-9ac7f05a849a
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 01-Jul-2013 20:42:17
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc2
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 875316d8-f5b2-3e4b-a71b-9ac7f05a849a
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 01-Jul-2013 20:42:17
Info: Test - switch
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 875316d8-f5b2-3e4b-a71b-9ac7f05a849a
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 01-Jul-2013 20:42:17
Info: PYSVN CMD switch b:\wc2 file:///b:/root/repos/tags/version1
A B:/wc2/test/file2.txt
A B:/wc2/test/file3.txt
D B:/wc2/test/file1b.txt
D B:/wc2/test/file2b.txt
D B:/wc2/test/file3b.txt
U B:/wc2
U B:/wc2/test
U B:/wc2/test/file4.txt
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/tags/version1
Repository UUID: 875316d8-f5b2-3e4b-a71b-9ac7f05a849a
Revision: 12
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 01-Jul-2013 20:42:18
Info: Test - update - see above
Info: Test - Info: Testing - merge
Info: PYSVN CMD checkout file:///b:/root/repos/trunk b:\wc3
A B:/wc3/test
A B:/wc3/test/file1.txt
A B:/wc3/test/file1b.txt
A B:/wc3/test/file2b.txt
A B:/wc3/test/file3b.txt
A B:/wc3/test/file4.txt
A B:/wc3/test/file5.txt
A B:/wc3/test/folder1
A B:/wc3/test/folder1/file7.txt
A B:/wc3/test/folder1/folder2
A B:/wc3/test/folder1/folder2/file8.txt
A B:/wc3/test/folder3
U B:/wc3
update_started B:/wc3
Checked out revision 12
Info: CMD cd b:\wc3\test
Info: Create File file-merge-1.txt - test add file merge 1
Info: Create File file-merge-2.txt - test add file merge 2
Info: PYSVN CMD add file-merge-1.txt
A B:/wc3/test/file-merge-1.txt
Info: PYSVN CMD add file-merge-2.txt
A B:/wc3/test/file-merge-2.txt
Info: PYSVN CMD commit -m "add test merge files" .
A B:/wc3/test/file-merge-1.txt
A B:/wc3/test/file-merge-2.txt
Revision 13
Info: Create File msg.tmp - make a branch
Info: PYSVN CMD copy file:///b:/root/repos/trunk/test file:///b:/root/repos/trunk/test-branch
Log message
--- -------
Info: PYSVN CMD update b:\wc3
A B:/wc3/test-branch
A B:/wc3/test-branch/file-merge-1.txt
A B:/wc3/test-branch/file-merge-2.txt
A B:/wc3/test-branch/file1.txt
A B:/wc3/test-branch/file1b.txt
A B:/wc3/test-branch/file2b.txt
A B:/wc3/test-branch/file3b.txt
A B:/wc3/test-branch/file4.txt
A B:/wc3/test-branch/file5.txt
A B:/wc3/test-branch/folder1
A B:/wc3/test-branch/folder1/file7.txt
A B:/wc3/test-branch/folder1/folder2
A B:/wc3/test-branch/folder1/folder2/file8.txt
A B:/wc3/test-branch/folder3
U B:/wc3
update_started B:/wc3
Updated to revision 14
Info: Create File file-merge-3.txt - test add file merge 3
Info: PYSVN CMD add file-merge-3.txt
A B:/wc3/test/file-merge-3.txt
Info: PYSVN CMD rm file-merge-1.txt
D B:/wc3/test/file-merge-1.txt
Info: Append File file-merge-2.txt - modify merge 2
Info: PYSVN CMD commit -m "change test merge files" .
A B:/wc3/test/file-merge-3.txt
D B:/wc3/test/file-merge-1.txt
M B:/wc3/test/file-merge-2.txt
Revision 15
Info: PYSVN CMD merge --dry-run --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
A B:/wc3/test-branch/file-merge-3.txt
D B:/wc3/test-branch/file-merge-1.txt
U B:/wc3/test-branch
U B:/wc3/test-branch/file-merge-2.txt
merge_begin B:/wc3/test-branch
merge_begin B:/wc3/test-branch/file-merge-2.txt
merge_completed B:/wc3/test-branch
merge_record_info B:/wc3/test-branch
merge_record_info B:/wc3/test-branch/file-merge-2.txt
merge_record_info B:/wc3/test-branch/file-merge-3.txt
merge_record_info_begin B:/wc3/test-branch
merge_record_info_begin B:/wc3/test-branch/file-merge-2.txt
Info: PYSVN CMD merge --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
U B:/wc3/test-branch
merge_completed B:/wc3/test-branch
Info: PYSVN CMD status b:\wc3\test-branch
M B:\wc3\test-branch
D B:\wc3\test-branch\file-merge-1.txt
MM B:\wc3\test-branch\file-merge-2.txt
A + B:\wc3\test-branch\file-merge-3.txt
Info: PYSVN CMD diff b:\wc3\test-branch
Index: B:/wc3/test-branch
===================================================================
--- B:/wc3/test-branch (revision 14)
+++ B:/wc3/test-branch (working copy)
Property changes on: B:/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r15*
Index: B:/wc3/test-branch/file-merge-1.txt
===================================================================
--- B:/wc3/test-branch/file-merge-1.txt (revision 14)
+++ B:/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: B:/wc3/test-branch/file-merge-2.txt
===================================================================
--- B:/wc3/test-branch/file-merge-2.txt (revision 14)
+++ B:/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Property changes on: B:/wc3/test-branch/file-merge-2.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-2.txt:r15
Index: B:/wc3/test-branch/file-merge-3.txt
===================================================================
--- B:/wc3/test-branch/file-merge-3.txt (revision 14)
+++ B:/wc3/test-branch/file-merge-3.txt (working copy)
Property changes on: B:/wc3/test-branch/file-merge-3.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-3.txt:r15
Info: CMD c:\python27.win32\python.exe C:\wc\svn\pysvn\Extension\Tests\test_01_set_get_tests.py b:\configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Test - end
pysvn-1.8.0/Tests/test-01.win32.known_good-py2-svn1.8.log 000644 000771 000771 00000063564 12177514654 022046 0 ustar 00barry 000000 000000 WorkDir: C:\wc\svn\pysvn\Extension
PYTHON: c:\python27.win32\python.exe
Username: barry
Info: PYSVN CMD c:\python27.win32\python.exe C:\wc\svn\pysvn\Extension\Examples\Client\svn_cmd.py --pysvn-testing 01.01.00 --config-dir b:\configdir
Info: CMD mkdir testroot-01
Info: CMD subst b: C:\wc\svn\pysvn\Extension\Tests\testroot-01
Info: CMD cd /d b:\
Info: CMD svnadmin create b:\repos
Info: Test - mkdir
Info: PYSVN CMD mkdir file:///b:/repos/trunk -m "test-01 add trunk"
Info: PYSVN CMD mkdir file:///b:/repos/trunk/test -m "test-01 add test"
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos -v -R
2 barry 0 04-Aug-2013 19:12:11 file:///B:/repos/trunk
2 barry 0 04-Aug-2013 19:12:11 file:///B:/repos/trunk/test
Info: Test - checkout
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc1
A B:/wc1/test
U B:/wc1
update_started B:/wc1
Checked out revision 2
Info: CMD dir b:\wc1 /s /b /a-h
b:\wc1\test
b:\wc1\.svn\entries
b:\wc1\.svn\format
b:\wc1\.svn\pristine
b:\wc1\.svn\tmp
b:\wc1\.svn\wc.db
Info: CMD cd /d b:\wc1\test
Info: Test - add
Info: Create File file1.txt - test add file 1
Info: Create File file2.txt - test add file 2
Info: Create File file3.txt - test add file 3
Info: Create File file4.txt - test add file 4
Info: Create File file5.txt - test add file 5
Info: CMD mkdir folder1
Info: Create File folder1\file7.txt - test add file 7
Info: CMD mkdir folder1\folder2
Info: Create File folder1\folder2\file8.txt - test add file 8
Info: CMD mkdir folder3
Info: Create File folder3\file9.txt - test add file 9
Info: CMD mkdir folder3\folder4
Info: Create File folder3\folder4\file10.txt - test add file 10
Info: PYSVN CMD add file1.txt
A B:/wc1/test/file1.txt
Info: PYSVN CMD add file2.txt
A B:/wc1/test/file2.txt
Info: PYSVN CMD add file3.txt
A B:/wc1/test/file3.txt
Info: PYSVN CMD add file4.txt
A B:/wc1/test/file4.txt
Info: PYSVN CMD add --force file5.txt
A B:/wc1/test/file5.txt
Info: PYSVN CMD add folder1
A B:/wc1/test/folder1
A B:/wc1/test/folder1/file7.txt
A B:/wc1/test/folder1/folder2
A B:/wc1/test/folder1/folder2/file8.txt
Info: PYSVN CMD add --non-recursive folder3
A B:/wc1/test/folder3
Info: PYSVN CMD checkin -m "commit added files"
A B:/wc1/test/file1.txt
A B:/wc1/test/file2.txt
A B:/wc1/test/file3.txt
A B:/wc1/test/file4.txt
A B:/wc1/test/file5.txt
A B:/wc1/test/folder1
A B:/wc1/test/folder1/file7.txt
A B:/wc1/test/folder1/folder2
A B:/wc1/test/folder1/folder2/file8.txt
A B:/wc1/test/folder3
Revision 3
Info: Test - update - get a new wc that will update
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc2
A B:/wc2/test
A B:/wc2/test/file1.txt
A B:/wc2/test/file2.txt
A B:/wc2/test/file3.txt
A B:/wc2/test/file4.txt
A B:/wc2/test/file5.txt
A B:/wc2/test/folder1
A B:/wc2/test/folder1/file7.txt
A B:/wc2/test/folder1/folder2
A B:/wc2/test/folder1/folder2/file8.txt
A B:/wc2/test/folder3
U B:/wc2
update_started B:/wc2
Checked out revision 3
Info: Test - - checkin a mod from wc1
Info: Append File b:\wc1\test\file1.txt - line 2
Info: PYSVN CMD checkin -m "commit modified file"
M B:/wc1/test/file1.txt
Revision 4
Info: PYSVN CMD checkin -m "commit modified file"
Nothing to commit
Info: Test - update
Info: PYSVN CMD update b:\wc2
U B:/wc2
U B:/wc2/test
U B:/wc2/test/file1.txt
update_started B:/wc2
Updated to revision 4
Info: Test - the rest in lexical order
Info: Test - annotate
Info: PYSVN CMD annotate b:\wc2\test\file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2013-08-04T18:12:12.491246Z | test add file 1
1| r4 | barry | 2013-08-04T18:12:12.912230Z | line 2
Info: Test - cat
Info: PYSVN CMD cat -r head file:///b:/repos/trunk/test/file1.txt
test add file 1
line 2
Info: Test - cleanup
Info: Test - copy
Info: PYSVN CMD mkdir file:///b:/repos/tags -m "test-01 add tags"
Info: Create File msg.tmp - tag the trunk
Info: PYSVN CMD copy file:///b:/repos/trunk file:///b:/repos/tags/version1
Log message
--- -------
Info: PYSVN CMD ls -v file:///b:/repos/tags
6 barry 0 04-Aug-2013 19:12:13 file:///B:/repos/tags/version1
Info: PYSVN CMD copy b:\wc2\test\file1.txt b:\wc2\test\file1b.txt
A B:/wc2/test/file1b.txt
Info: PYSVN CMD propset svn:eol-style native b:\wc2\test\file1b.txt
property_added B:/wc2/test/file1b.txt
Info: PYSVN CMD checkin b:\wc2 -m "copy test"
A B:/wc2/test/file1b.txt
Revision 7
Info: Test - diff
Info: Append File b:\wc2\test\file1b.txt - new line
Info: PYSVN CMD diff b:\wc2
Index: B:/wc2/test/file1b.txt
===================================================================
--- B:/wc2/test/file1b.txt (revision 7)
+++ B:/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Test - export
Info: PYSVN CMD export file:///b:/repos/trunk/test b:\export1.native
A b:\export1.native
A b:\export1.native/file1.txt
A b:\export1.native/file1b.txt
A b:\export1.native/file2.txt
A b:\export1.native/file3.txt
A b:\export1.native/file4.txt
A b:\export1.native/file5.txt
A b:\export1.native/folder1
A b:\export1.native/folder1/file7.txt
A b:\export1.native/folder1/folder2
A b:\export1.native/folder1/folder2/file8.txt
A b:\export1.native/folder3
Info: PYSVN CMD export --native-eol CR file:///b:/repos/trunk/test b:\export1.cr
A b:\export1.cr
A b:\export1.cr/file1.txt
A b:\export1.cr/file1b.txt
A b:\export1.cr/file2.txt
A b:\export1.cr/file3.txt
A b:\export1.cr/file4.txt
A b:\export1.cr/file5.txt
A b:\export1.cr/folder1
A b:\export1.cr/folder1/file7.txt
A b:\export1.cr/folder1/folder2
A b:\export1.cr/folder1/folder2/file8.txt
A b:\export1.cr/folder3
Info: PYSVN CMD export --native-eol LF file:///b:/repos/trunk/test b:\export1.lf
A b:\export1.lf
A b:\export1.lf/file1.txt
A b:\export1.lf/file1b.txt
A b:\export1.lf/file2.txt
A b:\export1.lf/file3.txt
A b:\export1.lf/file4.txt
A b:\export1.lf/file5.txt
A b:\export1.lf/folder1
A b:\export1.lf/folder1/file7.txt
A b:\export1.lf/folder1/folder2
A b:\export1.lf/folder1/folder2/file8.txt
A b:\export1.lf/folder3
Info: PYSVN CMD export --native-eol CRLF file:///b:/repos/trunk/test b:\export1.crlf
A b:\export1.crlf
A b:\export1.crlf/file1.txt
A b:\export1.crlf/file1b.txt
A b:\export1.crlf/file2.txt
A b:\export1.crlf/file3.txt
A b:\export1.crlf/file4.txt
A b:\export1.crlf/file5.txt
A b:\export1.crlf/folder1
A b:\export1.crlf/folder1/file7.txt
A b:\export1.crlf/folder1/folder2
A b:\export1.crlf/folder1/folder2/file8.txt
A b:\export1.crlf/folder3
Info: CMD dir /s /b b:\export1.native
b:\export1.native\file1.txt
b:\export1.native\file1b.txt
b:\export1.native\file2.txt
b:\export1.native\file3.txt
b:\export1.native\file4.txt
b:\export1.native\file5.txt
b:\export1.native\folder1
b:\export1.native\folder3
b:\export1.native\folder1\file7.txt
b:\export1.native\folder1\folder2
b:\export1.native\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.cr
b:\export1.cr\file1.txt
b:\export1.cr\file1b.txt
b:\export1.cr\file2.txt
b:\export1.cr\file3.txt
b:\export1.cr\file4.txt
b:\export1.cr\file5.txt
b:\export1.cr\folder1
b:\export1.cr\folder3
b:\export1.cr\folder1\file7.txt
b:\export1.cr\folder1\folder2
b:\export1.cr\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.lf
b:\export1.lf\file1.txt
b:\export1.lf\file1b.txt
b:\export1.lf\file2.txt
b:\export1.lf\file3.txt
b:\export1.lf\file4.txt
b:\export1.lf\file5.txt
b:\export1.lf\folder1
b:\export1.lf\folder3
b:\export1.lf\folder1\file7.txt
b:\export1.lf\folder1\folder2
b:\export1.lf\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.crlf
b:\export1.crlf\file1.txt
b:\export1.crlf\file1b.txt
b:\export1.crlf\file2.txt
b:\export1.crlf\file3.txt
b:\export1.crlf\file4.txt
b:\export1.crlf\file5.txt
b:\export1.crlf\folder1
b:\export1.crlf\folder3
b:\export1.crlf\folder1\file7.txt
b:\export1.crlf\folder1\folder2
b:\export1.crlf\folder1\folder2\file8.txt
Info: Test - import
Info: Test - info
Info: PYSVN CMD info b:\wc2\test
Path: b:\wc2\test
Name: .
Url: file:///B:/repos/trunk/test
Repository UUID: 702e5e5d-32d5-994f-b800-2553a0751dc4
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 04-Aug-2013 19:12:12
Info: PYSVN CMD info b:\wc2\test\file1.txt
Path: b:\wc2\test\file1.txt
Name: file1.txt
Url: file:///B:/repos/trunk/test/file1.txt
Repository UUID: 702e5e5d-32d5-994f-b800-2553a0751dc4
Revision: 4
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 04-Aug-2013 19:12:12
Text Last Updated: 04-Aug-2013 19:12:13
Checksum: cb0b37e264ebcc467e9f37a069e034d7
Info: Test - log
Info: PYSVN CMD log b:\wc2
------------------------------------------------------------
rev 7: barry | 04-Aug-2013 19:12:13 | 1 lines
copy test
------------------------------------------------------------
rev 4: barry | 04-Aug-2013 19:12:12 | 1 lines
commit modified file
------------------------------------------------------------
rev 3: barry | 04-Aug-2013 19:12:12 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 04-Aug-2013 19:12:11 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 04-Aug-2013 19:12:11 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos/trunk/test
file:///B:/repos/trunk/test/file1.txt
file:///B:/repos/trunk/test/file1b.txt
file:///B:/repos/trunk/test/file2.txt
file:///B:/repos/trunk/test/file3.txt
file:///B:/repos/trunk/test/file4.txt
file:///B:/repos/trunk/test/file5.txt
file:///B:/repos/trunk/test/folder1
file:///B:/repos/trunk/test/folder3
Info: PYSVN CMD ls -v file:///b:/repos/trunk/test
4 barry 25 04-Aug-2013 19:12:12 file:///B:/repos/trunk/test/file1.txt
7 barry 23 04-Aug-2013 19:12:13 file:///B:/repos/trunk/test/file1b.txt
3 barry 17 04-Aug-2013 19:12:12 file:///B:/repos/trunk/test/file2.txt
3 barry 17 04-Aug-2013 19:12:12 file:///B:/repos/trunk/test/file3.txt
3 barry 17 04-Aug-2013 19:12:12 file:///B:/repos/trunk/test/file4.txt
3 barry 17 04-Aug-2013 19:12:12 file:///B:/repos/trunk/test/file5.txt
3 barry 0 04-Aug-2013 19:12:12 file:///B:/repos/trunk/test/folder1
3 barry 0 04-Aug-2013 19:12:12 file:///B:/repos/trunk/test/folder3
Info: PYSVN CMD ls b:\wc2\test
B:/wc2/test/file1.txt
B:/wc2/test/file1b.txt
B:/wc2/test/file2.txt
B:/wc2/test/file3.txt
B:/wc2/test/file4.txt
B:/wc2/test/file5.txt
B:/wc2/test/folder1
B:/wc2/test/folder3
Info: PYSVN CMD ls -v b:\wc2\test
4 barry 25 04-Aug-2013 19:12:12 B:/wc2/test/file1.txt
7 barry 23 04-Aug-2013 19:12:13 B:/wc2/test/file1b.txt
3 barry 17 04-Aug-2013 19:12:12 B:/wc2/test/file2.txt
3 barry 17 04-Aug-2013 19:12:12 B:/wc2/test/file3.txt
3 barry 17 04-Aug-2013 19:12:12 B:/wc2/test/file4.txt
3 barry 17 04-Aug-2013 19:12:12 B:/wc2/test/file5.txt
3 barry 0 04-Aug-2013 19:12:12 B:/wc2/test/folder1
3 barry 0 04-Aug-2013 19:12:12 B:/wc2/test/folder3
Info: Test - merge - see below
Info: Test - mkdir - done above
Info: Test - move
Info: Create File msg.tmp - move url test
Info: PYSVN CMD move file:///b:/repos/trunk/test/file2.txt file:///b:/repos/trunk/test/file2b.txt
Log message
--- -------
Info: PYSVN CMD move b:\wc2\test\file3.txt b:\wc2\test\file3b.txt
A B:/wc2/test/file3b.txt
D B:/wc2/test/file3.txt
Info: PYSVN CMD checkin b:\wc2 -m "move wc test"
A B:/wc2/test/file3b.txt
D B:/wc2/test/file3.txt
M B:/wc2/test/file1b.txt
Revision 9
Info: Test - status
Info: Append File b:\wc1\test\file4.txt - file 4 is changing
Info: PYSVN CMD checkin b:\wc1 -m "change wc1 for status -u to detect"
M B:/wc1/test/file4.txt
Revision 10
Info: PYSVN CMD status b:\wc2
Info: PYSVN CMD status --verbose b:\wc2
4 4 barry B:\wc2
4 4 barry B:\wc2\test
4 4 barry B:\wc2\test\file1.txt
9 9 barry B:\wc2\test\file1b.txt
4 3 barry B:\wc2\test\file2.txt
9 9 barry B:\wc2\test\file3b.txt
4 3 barry B:\wc2\test\file4.txt
4 3 barry B:\wc2\test\file5.txt
4 3 barry B:\wc2\test\folder1
4 3 barry B:\wc2\test\folder1\file7.txt
4 3 barry B:\wc2\test\folder1\folder2
4 3 barry B:\wc2\test\folder1\folder2\file8.txt
4 3 barry B:\wc2\test\folder3
Info: PYSVN CMD status --show-updates b:\wc2
M B:\wc2\test
D B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
M B:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry B:\wc2
M 4 4 barry B:\wc2\test
4 4 barry B:\wc2\test\file1.txt
9 9 barry B:\wc2\test\file1b.txt
D 4 3 barry B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
9 9 barry B:\wc2\test\file3b.txt
M 4 3 barry B:\wc2\test\file4.txt
4 3 barry B:\wc2\test\file5.txt
4 3 barry B:\wc2\test\folder1
4 3 barry B:\wc2\test\folder1\file7.txt
4 3 barry B:\wc2\test\folder1\folder2
4 3 barry B:\wc2\test\folder1\folder2\file8.txt
4 3 barry B:\wc2\test\folder3
Info: PYSVN CMD update
A B:/wc1/test/file1b.txt
A B:/wc1/test/file2b.txt
A B:/wc1/test/file3b.txt
D B:/wc1/test/file2.txt
D B:/wc1/test/file3.txt
U B:/wc1
U B:/wc1/test
update_started B:/wc1/test
Updated to revision 10
Info: PYSVN CMD status --show-updates b:\wc2
M B:\wc2\test
D B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
M B:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry B:\wc2
M 4 4 barry B:\wc2\test
4 4 barry B:\wc2\test\file1.txt
9 9 barry B:\wc2\test\file1b.txt
D 4 3 barry B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
9 9 barry B:\wc2\test\file3b.txt
M 4 3 barry B:\wc2\test\file4.txt
4 3 barry B:\wc2\test\file5.txt
4 3 barry B:\wc2\test\folder1
4 3 barry B:\wc2\test\folder1\file7.txt
4 3 barry B:\wc2\test\folder1\folder2
4 3 barry B:\wc2\test\folder1\folder2\file8.txt
4 3 barry B:\wc2\test\folder3
Info: PYSVN CMD checkin b:\wc2 -m "prop change"
Nothing to commit
Info: Test - propdel
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD propset test:prop1 del_me file4.txt
property_added B:/wc2/test/file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: PYSVN CMD propdel test:prop1 file4.txt
property_deleted B:/wc2/test/file4.txt
Info: PYSVN CMD proplist -v file4.txt
Info: Test - propget
Info: PYSVN CMD propget svn:eol-style file4.txt
Info: Test - proplist - see above
Info: Test - propset
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD proplist -v file4.txt
Info: PYSVN CMD propset svn:eol-style native file4.txt
property_added B:/wc2/test/file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Test - remove
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD remove file5.txt
D B:/wc2/test/file5.txt
Info: PYSVN CMD status
MM file4.txt
D file5.txt
Info: Test - resolved
Info: Append File b:\wc1\test\file4.txt - conflict in file4 yes
Info: Append File b:\wc2\test\file4.txt - conflict in file4 no
Info: PYSVN CMD checkin b:\wc1\test -m "make a conflict part 1"
M B:/wc1/test/file4.txt
Revision 11
Info: PYSVN CMD update b:\wc2\test
callback_conflict_resolver
action:
base_file: B:\wc2\test\file4.txt.r4
is_binary: False
kind:
merged_file: B:\wc2\test\file4.txt
mime_type: None
my_file: B:\wc2\test\file4.txt.mine
node_kind:
operation:
path: B:/wc2/test/file4.txt
property_name: None
reason:
repos_url: {'node_kind': , 'path_in_repos': u'trunk/test/file4.txt', 'peg_rev': , 'repos_url': u'file:///B:/repos'}
repos_url: {'node_kind': , 'path_in_repos': u'trunk/test/file4.txt', 'peg_rev': , 'repos_url': u'file:///B:/repos'}
their_file: B:\wc2\test\file4.txt.r11
A B:/wc2/test/file2b.txt
D B:/wc2/test/file2.txt
U B:/wc2
U B:/wc2/test
U B:/wc2/test/file4.txt
conflict_resolver_done B:/wc2/test/file4.txt
conflict_resolver_starting B:/wc2/test/file4.txt
update_started B:/wc2/test
Updated to revision 11
Info: PYSVN CMD status
CM file4.txt
? file4.txt.mine
? file4.txt.r11
? file4.txt.r4
D file5.txt
Info: CMD copy b:\wc2\test\file4.txt.mine b:\wc2\test\file4.txt
1 file(s) copied.
Info: PYSVN CMD resolved b:\wc2\test\file4.txt
R B:/wc2/test/file4.txt
conflict_resolver_done B:/wc2/test/file4.txt
conflict_resolver_starting B:/wc2/test/file4.txt
Info: PYSVN CMD checkin b:\wc2\test\file4.txt -m "resolve a confict part 2"
M B:/wc2/test/file4.txt
Revision 12
Info: Test - revert
Info: PYSVN CMD revert file5.txt
R B:/wc2/test/file5.txt
Info: PYSVN CMD status
Info: Test - revproplist
Info: PYSVN CMD revproplist file:///b:/repos/trunk
Revision: 12
svn:author: barry
svn:date: 2013-08-04T18:12:17.215622Z
svn:log: resolve a confict part 2
Info: Test - revpropget
Info: PYSVN CMD revpropget svn:log file:///b:/repos/trunk
Revision: 12
svn:log: resolve a confict part 2
Info: PYSVN CMD revpropget no_such_prop file:///b:/repos/trunk
Revision: 12
no_such_prop: None
Info: Test - revpropset
Info: PYSVN CMD revpropset svn:log "Hello world" file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - revpropdel
Info: PYSVN CMD revpropdel svn:log file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - status - see above
Info: Test - relocate
Info: CMD mkdir b:\root
Info: CMD move b:\repos b:\root
1 dir(s) moved.
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///B:/repos/trunk
Repository UUID: 702e5e5d-32d5-994f-b800-2553a0751dc4
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 04-Aug-2013 19:12:11
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc1
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 702e5e5d-32d5-994f-b800-2553a0751dc4
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 04-Aug-2013 19:12:11
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/repos/trunk
Repository UUID: 702e5e5d-32d5-994f-b800-2553a0751dc4
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 04-Aug-2013 19:12:12
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc2
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 702e5e5d-32d5-994f-b800-2553a0751dc4
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 04-Aug-2013 19:12:12
Info: Test - switch
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 702e5e5d-32d5-994f-b800-2553a0751dc4
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 04-Aug-2013 19:12:12
Info: PYSVN CMD switch b:\wc2 file:///b:/root/repos/tags/version1
A B:/wc2/test/file2.txt
A B:/wc2/test/file3.txt
D B:/wc2/test/file1b.txt
D B:/wc2/test/file2b.txt
D B:/wc2/test/file3b.txt
U B:/wc2
U B:/wc2/test
U B:/wc2/test/file4.txt
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/tags/version1
Repository UUID: 702e5e5d-32d5-994f-b800-2553a0751dc4
Revision: 12
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 04-Aug-2013 19:12:13
Info: Test - update - see above
Info: Test - Info: Testing - merge
Info: PYSVN CMD checkout file:///b:/root/repos/trunk b:\wc3
A B:/wc3/test
A B:/wc3/test/file1.txt
A B:/wc3/test/file1b.txt
A B:/wc3/test/file2b.txt
A B:/wc3/test/file3b.txt
A B:/wc3/test/file4.txt
A B:/wc3/test/file5.txt
A B:/wc3/test/folder1
A B:/wc3/test/folder1/file7.txt
A B:/wc3/test/folder1/folder2
A B:/wc3/test/folder1/folder2/file8.txt
A B:/wc3/test/folder3
U B:/wc3
update_started B:/wc3
Checked out revision 12
Info: CMD cd b:\wc3\test
Info: Create File file-merge-1.txt - test add file merge 1
Info: Create File file-merge-2.txt - test add file merge 2
Info: PYSVN CMD add file-merge-1.txt
A B:/wc3/test/file-merge-1.txt
Info: PYSVN CMD add file-merge-2.txt
A B:/wc3/test/file-merge-2.txt
Info: PYSVN CMD commit -m "add test merge files" .
A B:/wc3/test/file-merge-1.txt
A B:/wc3/test/file-merge-2.txt
Revision 13
Info: Create File msg.tmp - make a branch
Info: PYSVN CMD copy file:///b:/root/repos/trunk/test file:///b:/root/repos/trunk/test-branch
Log message
--- -------
Info: PYSVN CMD update b:\wc3
A B:/wc3/test-branch
A B:/wc3/test-branch/file-merge-1.txt
A B:/wc3/test-branch/file-merge-2.txt
A B:/wc3/test-branch/file1.txt
A B:/wc3/test-branch/file1b.txt
A B:/wc3/test-branch/file2b.txt
A B:/wc3/test-branch/file3b.txt
A B:/wc3/test-branch/file4.txt
A B:/wc3/test-branch/file5.txt
A B:/wc3/test-branch/folder1
A B:/wc3/test-branch/folder1/file7.txt
A B:/wc3/test-branch/folder1/folder2
A B:/wc3/test-branch/folder1/folder2/file8.txt
A B:/wc3/test-branch/folder3
U B:/wc3
update_started B:/wc3
Updated to revision 14
Info: Create File file-merge-3.txt - test add file merge 3
Info: PYSVN CMD add file-merge-3.txt
A B:/wc3/test/file-merge-3.txt
Info: PYSVN CMD rm file-merge-1.txt
D B:/wc3/test/file-merge-1.txt
Info: Append File file-merge-2.txt - modify merge 2
Info: PYSVN CMD commit -m "change test merge files" .
A B:/wc3/test/file-merge-3.txt
D B:/wc3/test/file-merge-1.txt
M B:/wc3/test/file-merge-2.txt
Revision 15
Info: PYSVN CMD merge --dry-run --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
A B:/wc3/test-branch/file-merge-3.txt
D B:/wc3/test-branch/file-merge-1.txt
U B:/wc3/test-branch/file-merge-2.txt
U B:/wc3/test-branch/file-merge-2.txt
merge_begin B:/wc3/test-branch
merge_completed B:/wc3/test-branch
merge_elide_info B:/wc3/test-branch/file-merge-2.txt
merge_record_info B:/wc3/test-branch
merge_record_info B:/wc3/test-branch/file-merge-2.txt
merge_record_info_begin B:/wc3/test-branch
merge_record_info_begin B:/wc3/test-branch/file-merge-2.txt
Info: PYSVN CMD merge --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
merge_completed B:/wc3/test-branch
Info: PYSVN CMD status b:\wc3\test-branch
M B:\wc3\test-branch
D B:\wc3\test-branch\file-merge-1.txt
M B:\wc3\test-branch\file-merge-2.txt
A + B:\wc3\test-branch\file-merge-3.txt
Info: PYSVN CMD diff b:\wc3\test-branch
Index: B:/wc3/test-branch/file-merge-1.txt
===================================================================
--- B:/wc3/test-branch/file-merge-1.txt (revision 14)
+++ B:/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: B:/wc3/test-branch/file-merge-2.txt
===================================================================
--- B:/wc3/test-branch/file-merge-2.txt (revision 14)
+++ B:/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Index: B:/wc3/test-branch
===================================================================
--- B:/wc3/test-branch (revision 14)
+++ B:/wc3/test-branch (working copy)
Property changes on: B:/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r15
Info: CMD c:\python27.win32\python.exe C:\wc\svn\pysvn\Extension\Tests\test_01_set_get_tests.py b:\configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Test - end
pysvn-1.8.0/Tests/test-01.win32.known_good-py3-svn1.5.log 000644 000771 000771 00000064564 11264420550 022030 0 ustar 00barry 000000 000000 WorkDir: C:\wc\pysvn\trunk\pysvn\Extension
PYTHON: c:\python31\python.exe
Username: barry
Info: PYSVN CMD c:\python31\python.exe C:\wc\pysvn\trunk\pysvn\Extension\Examples\Client\svn_cmd.py --pysvn-testing 01.01.00 --config-dir b:\configdir
Info: CMD mkdir testroot-01
Info: CMD subst b: C:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-01
Info: CMD cd /d b:\
Info: CMD svnadmin create b:\repos
Info: Test - mkdir
Info: PYSVN CMD mkdir file:///b:/repos/trunk -m "test-01 add trunk"
Info: PYSVN CMD mkdir file:///b:/repos/trunk/test -m "test-01 add test"
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos -v -R
2 barry 0 11-Oct-2009 19:16:22 file:///b:/repos/trunk
2 barry 0 11-Oct-2009 19:16:22 file:///b:/repos/trunk/test
Info: Test - checkout
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc1
A b:/wc1/test
U b:/wc1
Checked out revision 2
Info: CMD dir b:\wc1 /s /b /a-h
b:\wc1\test
b:\wc1\.svn\entries
b:\wc1\.svn\format
b:\wc1\.svn\prop-base
b:\wc1\.svn\props
b:\wc1\.svn\text-base
b:\wc1\.svn\tmp
b:\wc1\.svn\tmp\prop-base
b:\wc1\.svn\tmp\props
b:\wc1\.svn\tmp\text-base
b:\wc1\test\.svn\entries
b:\wc1\test\.svn\format
b:\wc1\test\.svn\prop-base
b:\wc1\test\.svn\props
b:\wc1\test\.svn\text-base
b:\wc1\test\.svn\tmp
b:\wc1\test\.svn\tmp\prop-base
b:\wc1\test\.svn\tmp\props
b:\wc1\test\.svn\tmp\text-base
Info: CMD cd /d b:\wc1\test
Info: Test - add
Info: Create File file1.txt - test add file 1
Info: Create File file2.txt - test add file 2
Info: Create File file3.txt - test add file 3
Info: Create File file4.txt - test add file 4
Info: Create File file5.txt - test add file 5
Info: CMD mkdir folder1
Info: Create File folder1\file7.txt - test add file 7
Info: CMD mkdir folder1\folder2
Info: Create File folder1\folder2\file8.txt - test add file 8
Info: CMD mkdir folder3
Info: Create File folder3\file9.txt - test add file 9
Info: CMD mkdir folder3\folder4
Info: Create File folder3\folder4\file10.txt - test add file 10
Info: PYSVN CMD add file1.txt
A file1.txt
Info: PYSVN CMD add file2.txt
A file2.txt
Info: PYSVN CMD add file3.txt
A file3.txt
Info: PYSVN CMD add file4.txt
A file4.txt
Info: PYSVN CMD add --force file5.txt
A file5.txt
Info: PYSVN CMD add folder1
A folder1
A folder1/file7.txt
A folder1/folder2
A folder1/folder2/file8.txt
Info: PYSVN CMD add --non-recursive folder3
A folder3
Info: PYSVN CMD checkin -m "commit added files"
A test/file1.txt
A test/file2.txt
A test/file3.txt
A test/file4.txt
A test/file5.txt
A test/folder1
A test/folder1/file7.txt
A test/folder1/folder2
A test/folder1/folder2/file8.txt
A test/folder3
Revision 3
Info: Test - update - get a new wc that will update
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc2
A b:/wc2/test
A b:/wc2/test/file1.txt
A b:/wc2/test/file2.txt
A b:/wc2/test/file3.txt
A b:/wc2/test/file4.txt
A b:/wc2/test/file5.txt
A b:/wc2/test/folder1
A b:/wc2/test/folder1/file7.txt
A b:/wc2/test/folder1/folder2
A b:/wc2/test/folder1/folder2/file8.txt
A b:/wc2/test/folder3
U b:/wc2
Checked out revision 3
Info: Test - - checkin a mod from wc1
Info: Append File b:\wc1\test\file1.txt - line 2
Info: PYSVN CMD checkin -m "commit modified file"
M test/file1.txt
Revision 4
Info: PYSVN CMD checkin -m "commit modified file"
Nothing to commit
Info: Test - update
Info: PYSVN CMD update b:\wc2
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file1.txt
Updated to revision 4
Info: Test - the rest in lexical order
Info: Test - annotate
Info: PYSVN CMD annotate b:\wc2\test\file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2009-10-11T18:16:28.490875Z | test add file 1
1| r4 | barry | 2009-10-11T18:16:30.709625Z | line 2
Info: Test - cat
Info: PYSVN CMD cat -r head file:///b:/repos/trunk/test/file1.txt
test add file 1
line 2
Info: Test - cleanup
Info: Test - copy
Info: PYSVN CMD mkdir file:///b:/repos/tags -m "test-01 add tags"
Info: Create File msg.tmp - tag the trunk
Info: PYSVN CMD copy file:///b:/repos/trunk file:///b:/repos/tags/version1
Log message
--- -------
Info: PYSVN CMD ls -v file:///b:/repos/tags
6 barry 0 11-Oct-2009 19:16:35 file:///b:/repos/tags/version1
Info: PYSVN CMD copy b:\wc2\test\file1.txt b:\wc2\test\file1b.txt
A b:/wc2/test/file1b.txt
Info: PYSVN CMD propset svn:eol-style native b:\wc2\test\file1b.txt
Info: PYSVN CMD checkin b:\wc2 -m "copy test"
A wc2/test/file1b.txt
Revision 7
Info: Test - diff
Info: Append File b:\wc2\test\file1b.txt - new line
Info: PYSVN CMD diff b:\wc2
Index: b:/wc2/test/file1b.txt
===================================================================
--- b:/wc2/test/file1b.txt (revision 7)
+++ b:/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Test - export
Info: PYSVN CMD export file:///b:/repos/trunk/test b:\export1.native
A b:\export1.native
A b:\export1.native/file1.txt
A b:\export1.native/file1b.txt
A b:\export1.native/file2.txt
A b:\export1.native/file3.txt
A b:\export1.native/file4.txt
A b:\export1.native/file5.txt
A b:\export1.native/folder1
A b:\export1.native/folder1/file7.txt
A b:\export1.native/folder1/folder2
A b:\export1.native/folder1/folder2/file8.txt
A b:\export1.native/folder3
Info: PYSVN CMD export --native-eol CR file:///b:/repos/trunk/test b:\export1.cr
A b:\export1.cr
A b:\export1.cr/file1.txt
A b:\export1.cr/file1b.txt
A b:\export1.cr/file2.txt
A b:\export1.cr/file3.txt
A b:\export1.cr/file4.txt
A b:\export1.cr/file5.txt
A b:\export1.cr/folder1
A b:\export1.cr/folder1/file7.txt
A b:\export1.cr/folder1/folder2
A b:\export1.cr/folder1/folder2/file8.txt
A b:\export1.cr/folder3
Info: PYSVN CMD export --native-eol LF file:///b:/repos/trunk/test b:\export1.lf
A b:\export1.lf
A b:\export1.lf/file1.txt
A b:\export1.lf/file1b.txt
A b:\export1.lf/file2.txt
A b:\export1.lf/file3.txt
A b:\export1.lf/file4.txt
A b:\export1.lf/file5.txt
A b:\export1.lf/folder1
A b:\export1.lf/folder1/file7.txt
A b:\export1.lf/folder1/folder2
A b:\export1.lf/folder1/folder2/file8.txt
A b:\export1.lf/folder3
Info: PYSVN CMD export --native-eol CRLF file:///b:/repos/trunk/test b:\export1.crlf
A b:\export1.crlf
A b:\export1.crlf/file1.txt
A b:\export1.crlf/file1b.txt
A b:\export1.crlf/file2.txt
A b:\export1.crlf/file3.txt
A b:\export1.crlf/file4.txt
A b:\export1.crlf/file5.txt
A b:\export1.crlf/folder1
A b:\export1.crlf/folder1/file7.txt
A b:\export1.crlf/folder1/folder2
A b:\export1.crlf/folder1/folder2/file8.txt
A b:\export1.crlf/folder3
Info: CMD dir /s /b b:\export1.native
b:\export1.native\file1.txt
b:\export1.native\file1b.txt
b:\export1.native\file2.txt
b:\export1.native\file3.txt
b:\export1.native\file4.txt
b:\export1.native\file5.txt
b:\export1.native\folder1
b:\export1.native\folder3
b:\export1.native\folder1\file7.txt
b:\export1.native\folder1\folder2
b:\export1.native\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.cr
b:\export1.cr\file1.txt
b:\export1.cr\file1b.txt
b:\export1.cr\file2.txt
b:\export1.cr\file3.txt
b:\export1.cr\file4.txt
b:\export1.cr\file5.txt
b:\export1.cr\folder1
b:\export1.cr\folder3
b:\export1.cr\folder1\file7.txt
b:\export1.cr\folder1\folder2
b:\export1.cr\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.lf
b:\export1.lf\file1.txt
b:\export1.lf\file1b.txt
b:\export1.lf\file2.txt
b:\export1.lf\file3.txt
b:\export1.lf\file4.txt
b:\export1.lf\file5.txt
b:\export1.lf\folder1
b:\export1.lf\folder3
b:\export1.lf\folder1\file7.txt
b:\export1.lf\folder1\folder2
b:\export1.lf\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.crlf
b:\export1.crlf\file1.txt
b:\export1.crlf\file1b.txt
b:\export1.crlf\file2.txt
b:\export1.crlf\file3.txt
b:\export1.crlf\file4.txt
b:\export1.crlf\file5.txt
b:\export1.crlf\folder1
b:\export1.crlf\folder3
b:\export1.crlf\folder1\file7.txt
b:\export1.crlf\folder1\folder2
b:\export1.crlf\folder1\folder2\file8.txt
Info: Test - import
Info: Test - info
Info: PYSVN CMD info b:\wc2\test
Path: b:\wc2\test
Name: .
Url: file:///b:/repos/trunk/test
Repository UUID: 2366d249-f026-ca4d-8d96-447fa5eb453f
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 11-Oct-2009 19:16:30
Info: PYSVN CMD info b:\wc2\test\file1.txt
Path: b:\wc2\test\file1.txt
Name: file1.txt
Url: file:///b:/repos/trunk/test/file1.txt
Repository UUID: 2366d249-f026-ca4d-8d96-447fa5eb453f
Revision: 4
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 11-Oct-2009 19:16:30
Text Last Updated: 11-Oct-2009 19:16:32
Checksum: cb0b37e264ebcc467e9f37a069e034d7
Info: Test - log
Info: PYSVN CMD log b:\wc2
------------------------------------------------------------
rev 7: barry | 11-Oct-2009 19:16:38 | 1 lines
copy test
------------------------------------------------------------
rev 4: barry | 11-Oct-2009 19:16:30 | 1 lines
commit modified file
------------------------------------------------------------
rev 3: barry | 11-Oct-2009 19:16:28 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 11-Oct-2009 19:16:22 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 11-Oct-2009 19:16:21 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos/trunk/test
file:///b:/repos/trunk/test/file1.txt
file:///b:/repos/trunk/test/file1b.txt
file:///b:/repos/trunk/test/file2.txt
file:///b:/repos/trunk/test/file3.txt
file:///b:/repos/trunk/test/file4.txt
file:///b:/repos/trunk/test/file5.txt
file:///b:/repos/trunk/test/folder1
file:///b:/repos/trunk/test/folder3
Info: PYSVN CMD ls -v file:///b:/repos/trunk/test
4 barry 25 11-Oct-2009 19:16:30 file:///b:/repos/trunk/test/file1.txt
7 barry 23 11-Oct-2009 19:16:38 file:///b:/repos/trunk/test/file1b.txt
3 barry 17 11-Oct-2009 19:16:28 file:///b:/repos/trunk/test/file2.txt
3 barry 17 11-Oct-2009 19:16:28 file:///b:/repos/trunk/test/file3.txt
3 barry 17 11-Oct-2009 19:16:28 file:///b:/repos/trunk/test/file4.txt
3 barry 17 11-Oct-2009 19:16:28 file:///b:/repos/trunk/test/file5.txt
3 barry 0 11-Oct-2009 19:16:28 file:///b:/repos/trunk/test/folder1
3 barry 0 11-Oct-2009 19:16:28 file:///b:/repos/trunk/test/folder3
Info: PYSVN CMD ls b:\wc2\test
b:/wc2/test/file1.txt
b:/wc2/test/file1b.txt
b:/wc2/test/file2.txt
b:/wc2/test/file3.txt
b:/wc2/test/file4.txt
b:/wc2/test/file5.txt
b:/wc2/test/folder1
b:/wc2/test/folder3
Info: PYSVN CMD ls -v b:\wc2\test
4 barry 25 11-Oct-2009 19:16:30 b:/wc2/test/file1.txt
7 barry 23 11-Oct-2009 19:16:38 b:/wc2/test/file1b.txt
3 barry 17 11-Oct-2009 19:16:28 b:/wc2/test/file2.txt
3 barry 17 11-Oct-2009 19:16:28 b:/wc2/test/file3.txt
3 barry 17 11-Oct-2009 19:16:28 b:/wc2/test/file4.txt
3 barry 17 11-Oct-2009 19:16:28 b:/wc2/test/file5.txt
3 barry 0 11-Oct-2009 19:16:28 b:/wc2/test/folder1
3 barry 0 11-Oct-2009 19:16:28 b:/wc2/test/folder3
Info: Test - merge - see below
Info: Test - mkdir - done above
Info: Test - move
Info: Create File msg.tmp - move url test
Info: PYSVN CMD move file:///b:/repos/trunk/test/file2.txt file:///b:/repos/trunk/test/file2b.txt
Log message
--- -------
Info: PYSVN CMD move b:\wc2\test\file3.txt b:\wc2\test\file3b.txt
A b:/wc2/test/file3b.txt
D b:/wc2/test/file3.txt
Info: PYSVN CMD checkin b:\wc2 -m "move wc test"
A wc2/test/file3b.txt
D wc2/test/file3.txt
M wc2/test/file1b.txt
Revision 9
Info: Test - status
Info: Append File b:\wc1\test\file4.txt - file 4 is changing
Info: PYSVN CMD checkin b:\wc1 -m "change wc1 for status -u to detect"
M test/file4.txt
Revision 10
Info: PYSVN CMD status b:\wc2
Info: PYSVN CMD status --verbose b:\wc2
4 4 barry b:\wc2
4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
4 3 barry b:\wc2\test\file2.txt
9 9 barry b:\wc2\test\file3b.txt
4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
4 3 barry b:\wc2\test\folder1
4 3 barry b:\wc2\test\folder1\file7.txt
4 3 barry b:\wc2\test\folder1\folder2
4 3 barry b:\wc2\test\folder1\folder2\file8.txt
4 3 barry b:\wc2\test\folder3
Info: PYSVN CMD status --show-updates b:\wc2
M b:\wc2\test
D b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
M b:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry b:\wc2
M 4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
D 4 3 barry b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
9 9 barry b:\wc2\test\file3b.txt
M 4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
4 3 barry b:\wc2\test\folder1
4 3 barry b:\wc2\test\folder1\file7.txt
4 3 barry b:\wc2\test\folder1\folder2
4 3 barry b:\wc2\test\folder1\folder2\file8.txt
4 3 barry b:\wc2\test\folder3
Info: PYSVN CMD update
A file1b.txt
A file2b.txt
A file3b.txt
D file2.txt
D file3.txt
Updated to revision 10
Info: PYSVN CMD status --show-updates b:\wc2
M b:\wc2\test
D b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
M b:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry b:\wc2
M 4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
D 4 3 barry b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
9 9 barry b:\wc2\test\file3b.txt
M 4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
4 3 barry b:\wc2\test\folder1
4 3 barry b:\wc2\test\folder1\file7.txt
4 3 barry b:\wc2\test\folder1\folder2
4 3 barry b:\wc2\test\folder1\folder2\file8.txt
4 3 barry b:\wc2\test\folder3
Info: PYSVN CMD checkin b:\wc2 -m "prop change"
Nothing to commit
Info: Test - propdel
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD propset test:prop1 del_me file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: PYSVN CMD propdel test:prop1 file4.txt
Info: PYSVN CMD proplist -v file4.txt
Info: Test - propget
Info: PYSVN CMD propget svn:eol-style file4.txt
Info: Test - proplist - see above
Info: Test - propset
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD proplist -v file4.txt
Info: PYSVN CMD propset svn:eol-style native file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Test - remove
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD remove file5.txt
D file5.txt
Info: PYSVN CMD status
M file4.txt
D file5.txt
Info: Test - resolved
Info: Append File b:\wc1\test\file4.txt - conflict in file4 yes
Info: Append File b:\wc2\test\file4.txt - conflict in file4 no
Info: PYSVN CMD checkin b:\wc1\test -m "make a conflict part 1"
M wc1/test/file4.txt
Revision 11
Info: PYSVN CMD update b:\wc2\test
callback_conflict_resolver
action:
base_file: 'b:\\wc2\\test\\.svn\\text-base\\file4.txt.svn-base'
is_binary: False
kind:
merged_file: 'b:\\wc2\\test\\.svn\\tmp\\tempfile.3.tmp'
mime_type: None
my_file: 'b:\\wc2\\test\\.svn\\tmp\\tempfile.2.tmp'
node_kind:
path: 'b:/wc2/test/file4.txt'
property_name: None
reason:
their_file: 'b:\\wc2\\test\\.svn\\tmp\\text-base\\file4.txt.svn-base'
A b:/wc2/test/file2b.txt
D b:/wc2/test/file2.txt
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file4.txt
Updated to revision 11
Info: PYSVN CMD status
CM file4.txt
? file4.txt.mine
? file4.txt.r11
? file4.txt.r4
D file5.txt
Info: CMD copy b:\wc2\test\file4.txt.mine b:\wc2\test\file4.txt
1 file(s) copied.
Info: PYSVN CMD resolved b:\wc2\test\file4.txt
R b:/wc2/test/file4.txt
Info: PYSVN CMD checkin b:\wc2\test\file4.txt -m "resolve a confict part 2"
M file4.txt
Revision 12
Info: Test - revert
Info: PYSVN CMD revert file5.txt
R file5.txt
Info: PYSVN CMD status
Info: Test - revproplist
Info: PYSVN CMD revproplist file:///b:/repos/trunk
Revision: 12
svn:author: barry
svn:date: 2009-10-11T18:17:02.803375Z
svn:log: resolve a confict part 2
Info: Test - revpropget
Info: PYSVN CMD revpropget svn:log file:///b:/repos/trunk
Revision: 12
svn:log: resolve a confict part 2
Info: PYSVN CMD revpropget no_such_prop file:///b:/repos/trunk
Revision: 12
no_such_prop: None
Info: Test - revpropset
Info: PYSVN CMD revpropset svn:log "Hello world" file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - revpropdel
Info: PYSVN CMD revpropdel svn:log file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - status - see above
Info: Test - relocate
Info: CMD mkdir b:\root
Info: CMD move b:\repos b:\root
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///b:/repos/trunk
Repository UUID: 2366d249-f026-ca4d-8d96-447fa5eb453f
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 11-Oct-2009 19:16:22
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc1
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///b:/root/repos/trunk
Repository UUID: 2366d249-f026-ca4d-8d96-447fa5eb453f
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 11-Oct-2009 19:16:22
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///b:/repos/trunk
Repository UUID: 2366d249-f026-ca4d-8d96-447fa5eb453f
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 11-Oct-2009 19:16:30
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc2
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///b:/root/repos/trunk
Repository UUID: 2366d249-f026-ca4d-8d96-447fa5eb453f
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 11-Oct-2009 19:16:30
Info: Test - switch
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///b:/root/repos/trunk
Repository UUID: 2366d249-f026-ca4d-8d96-447fa5eb453f
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 11-Oct-2009 19:16:30
Info: PYSVN CMD switch b:\wc2 file:///b:/root/repos/tags/version1
A b:/wc2/test/file2.txt
A b:/wc2/test/file3.txt
D b:/wc2/test/file1b.txt
D b:/wc2/test/file2b.txt
D b:/wc2/test/file3b.txt
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file4.txt
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///b:/root/repos/tags/version1
Repository UUID: 2366d249-f026-ca4d-8d96-447fa5eb453f
Revision: 12
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 11-Oct-2009 19:16:35
Info: Test - update - see above
Info: Test - Info: Testing - merge
Info: PYSVN CMD checkout file:///b:/root/repos/trunk b:\wc3
A b:/wc3/test
A b:/wc3/test/file1.txt
A b:/wc3/test/file1b.txt
A b:/wc3/test/file2b.txt
A b:/wc3/test/file3b.txt
A b:/wc3/test/file4.txt
A b:/wc3/test/file5.txt
A b:/wc3/test/folder1
A b:/wc3/test/folder1/file7.txt
A b:/wc3/test/folder1/folder2
A b:/wc3/test/folder1/folder2/file8.txt
A b:/wc3/test/folder3
U b:/wc3
Checked out revision 12
Info: CMD cd b:\wc3\test
Info: Create File file-merge-1.txt - test add file merge 1
Info: Create File file-merge-2.txt - test add file merge 2
Info: PYSVN CMD add file-merge-1.txt
A file-merge-1.txt
Info: PYSVN CMD add file-merge-2.txt
A file-merge-2.txt
Info: PYSVN CMD commit -m "add test merge files" .
A test/file-merge-1.txt
A test/file-merge-2.txt
Revision 13
Info: Create File msg.tmp - make a branch
Info: PYSVN CMD copy file:///b:/root/repos/trunk/test file:///b:/root/repos/trunk/test-branch
Log message
--- -------
Info: PYSVN CMD update b:\wc3
A b:/wc3/test-branch
A b:/wc3/test-branch/file-merge-1.txt
A b:/wc3/test-branch/file-merge-2.txt
A b:/wc3/test-branch/file1.txt
A b:/wc3/test-branch/file1b.txt
A b:/wc3/test-branch/file2b.txt
A b:/wc3/test-branch/file3b.txt
A b:/wc3/test-branch/file4.txt
A b:/wc3/test-branch/file5.txt
A b:/wc3/test-branch/folder1
A b:/wc3/test-branch/folder1/file7.txt
A b:/wc3/test-branch/folder1/folder2
A b:/wc3/test-branch/folder1/folder2/file8.txt
A b:/wc3/test-branch/folder3
U b:/wc3
U b:/wc3/test
Updated to revision 14
Info: Create File file-merge-3.txt - test add file merge 3
Info: PYSVN CMD add file-merge-3.txt
A file-merge-3.txt
Info: PYSVN CMD rm file-merge-1.txt
D file-merge-1.txt
Info: Append File file-merge-2.txt - modify merge 2
Info: PYSVN CMD commit -m "change test merge files" .
A test/file-merge-3.txt
D test/file-merge-1.txt
M test/file-merge-2.txt
Revision 15
Info: PYSVN CMD merge --dry-run --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
A b:/wc3/test-branch/file-merge-3.txt
D b:/wc3/test-branch/file-merge-1.txt
U b:/wc3/test-branch
U b:/wc3/test-branch/file-merge-2.txt
merge_begin b:/wc3/test-branch
merge_begin b:/wc3/test-branch/file-merge-2.txt
Info: PYSVN CMD merge --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
U b:/wc3/test-branch
Info: PYSVN CMD status b:\wc3\test-branch
M b:\wc3\test-branch
D b:\wc3\test-branch\file-merge-1.txt
MM b:\wc3\test-branch\file-merge-2.txt
A + b:\wc3\test-branch\file-merge-3.txt
M b:\wc3\test-branch\file1.txt
M b:\wc3\test-branch\file1b.txt
M b:\wc3\test-branch\file2b.txt
M b:\wc3\test-branch\file3b.txt
M b:\wc3\test-branch\file4.txt
M b:\wc3\test-branch\file5.txt
Info: PYSVN CMD diff b:\wc3\test-branch
Property changes on: b:\wc3\test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r15*
Property changes on: b:\wc3\test-branch\file1b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1b.txt:r15
Property changes on: b:\wc3\test-branch\file2b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file2b.txt:r15
Property changes on: b:\wc3\test-branch\file4.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file4.txt:r15
Property changes on: b:\wc3\test-branch\file3b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file3b.txt:r15
Property changes on: b:\wc3\test-branch\file5.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file5.txt:r15
Index: b:/wc3/test-branch/file-merge-1.txt
===================================================================
--- b:/wc3/test-branch/file-merge-1.txt (revision 14)
+++ b:/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: b:/wc3/test-branch/file-merge-2.txt
===================================================================
--- b:/wc3/test-branch/file-merge-2.txt (revision 14)
+++ b:/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Property changes on: b:\wc3\test-branch\file-merge-2.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-2.txt:r15
Property changes on: b:\wc3\test-branch\file-merge-3.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-3.txt:r15
Property changes on: b:\wc3\test-branch\file1.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1.txt:r15
Info: CMD c:\python31\python.exe C:\wc\pysvn\trunk\pysvn\Extension\Tests\test_01_set_get_tests.py b:\configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Test - end
pysvn-1.8.0/Tests/test-01.win32.known_good-py3-svn1.6.log 000644 000771 000771 00000064261 12052502536 022024 0 ustar 00barry 000000 000000 WorkDir: C:\wc\svn\pysvn\Extension
PYTHON: c:\python32.win32\python.exe
Username: barry
Info: PYSVN CMD c:\python32.win32\python.exe C:\wc\svn\pysvn\Extension\Examples\Client\svn_cmd.py --pysvn-testing 01.01.00 --config-dir b:\configdir
Info: CMD mkdir testroot-01
Info: CMD subst b: C:\wc\svn\pysvn\Extension\Tests\testroot-01
Info: CMD cd /d b:\
Info: CMD svnadmin create b:\repos
Info: Test - mkdir
Info: PYSVN CMD mkdir file:///b:/repos/trunk -m "test-01 add trunk"
Info: PYSVN CMD mkdir file:///b:/repos/trunk/test -m "test-01 add test"
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos -v -R
2 barry 0 19-Nov-2012 19:13:27 file:///B:/repos/trunk
2 barry 0 19-Nov-2012 19:13:27 file:///B:/repos/trunk/test
Info: Test - checkout
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc1
A b:/wc1/test
U b:/wc1
Checked out revision 2
Info: CMD dir b:\wc1 /s /b /a-h
b:\wc1\test
b:\wc1\.svn\entries
b:\wc1\.svn\prop-base
b:\wc1\.svn\props
b:\wc1\.svn\text-base
b:\wc1\.svn\tmp
b:\wc1\.svn\tmp\prop-base
b:\wc1\.svn\tmp\props
b:\wc1\.svn\tmp\text-base
b:\wc1\test\.svn\entries
b:\wc1\test\.svn\prop-base
b:\wc1\test\.svn\props
b:\wc1\test\.svn\text-base
b:\wc1\test\.svn\tmp
b:\wc1\test\.svn\tmp\prop-base
b:\wc1\test\.svn\tmp\props
b:\wc1\test\.svn\tmp\text-base
Info: CMD cd /d b:\wc1\test
Info: Test - add
Info: Create File file1.txt - test add file 1
Info: Create File file2.txt - test add file 2
Info: Create File file3.txt - test add file 3
Info: Create File file4.txt - test add file 4
Info: Create File file5.txt - test add file 5
Info: CMD mkdir folder1
Info: Create File folder1\file7.txt - test add file 7
Info: CMD mkdir folder1\folder2
Info: Create File folder1\folder2\file8.txt - test add file 8
Info: CMD mkdir folder3
Info: Create File folder3\file9.txt - test add file 9
Info: CMD mkdir folder3\folder4
Info: Create File folder3\folder4\file10.txt - test add file 10
Info: PYSVN CMD add file1.txt
A file1.txt
Info: PYSVN CMD add file2.txt
A file2.txt
Info: PYSVN CMD add file3.txt
A file3.txt
Info: PYSVN CMD add file4.txt
A file4.txt
Info: PYSVN CMD add --force file5.txt
A file5.txt
Info: PYSVN CMD add folder1
A folder1
A folder1/file7.txt
A folder1/folder2
A folder1/folder2/file8.txt
Info: PYSVN CMD add --non-recursive folder3
A folder3
Info: PYSVN CMD checkin -m "commit added files"
A b:/wc1/test/file1.txt
A b:/wc1/test/file2.txt
A b:/wc1/test/file3.txt
A b:/wc1/test/file4.txt
A b:/wc1/test/file5.txt
A b:/wc1/test/folder1
A b:/wc1/test/folder1/file7.txt
A b:/wc1/test/folder1/folder2
A b:/wc1/test/folder1/folder2/file8.txt
A b:/wc1/test/folder3
Revision 3
Info: Test - update - get a new wc that will update
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc2
A b:/wc2/test
A b:/wc2/test/file1.txt
A b:/wc2/test/file2.txt
A b:/wc2/test/file3.txt
A b:/wc2/test/file4.txt
A b:/wc2/test/file5.txt
A b:/wc2/test/folder1
A b:/wc2/test/folder1/file7.txt
A b:/wc2/test/folder1/folder2
A b:/wc2/test/folder1/folder2/file8.txt
A b:/wc2/test/folder3
U b:/wc2
Checked out revision 3
Info: Test - - checkin a mod from wc1
Info: Append File b:\wc1\test\file1.txt - line 2
Info: PYSVN CMD checkin -m "commit modified file"
M b:/wc1/test/file1.txt
Revision 4
Info: PYSVN CMD checkin -m "commit modified file"
Nothing to commit
Info: Test - update
Info: PYSVN CMD update b:\wc2
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file1.txt
Updated to revision 4
Info: Test - the rest in lexical order
Info: Test - annotate
Info: PYSVN CMD annotate b:\wc2\test\file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2012-11-19T19:13:28.937665Z | test add file 1
1| r4 | barry | 2012-11-19T19:13:29.374423Z | line 2
Info: Test - cat
Info: PYSVN CMD cat -r head file:///b:/repos/trunk/test/file1.txt
test add file 1
line 2
Info: Test - cleanup
Info: Test - copy
Info: PYSVN CMD mkdir file:///b:/repos/tags -m "test-01 add tags"
Info: Create File msg.tmp - tag the trunk
Info: PYSVN CMD copy file:///b:/repos/trunk file:///b:/repos/tags/version1
Log message
--- -------
Info: PYSVN CMD ls -v file:///b:/repos/tags
6 barry 0 19-Nov-2012 19:13:30 file:///B:/repos/tags/version1
Info: PYSVN CMD copy b:\wc2\test\file1.txt b:\wc2\test\file1b.txt
A b:/wc2/test/file1b.txt
Info: PYSVN CMD propset svn:eol-style native b:\wc2\test\file1b.txt
property_added b:/wc2/test/file1b.txt
Info: PYSVN CMD checkin b:\wc2 -m "copy test"
A B:/wc2/test/file1b.txt
Revision 7
Info: Test - diff
Info: Append File b:\wc2\test\file1b.txt - new line
Info: PYSVN CMD diff b:\wc2
Index: b:/wc2/test/file1b.txt
===================================================================
--- b:/wc2/test/file1b.txt (revision 7)
+++ b:/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Test - export
Info: PYSVN CMD export file:///b:/repos/trunk/test b:\export1.native
A b:\export1.native
A b:\export1.native/file1.txt
A b:\export1.native/file1b.txt
A b:\export1.native/file2.txt
A b:\export1.native/file3.txt
A b:\export1.native/file4.txt
A b:\export1.native/file5.txt
A b:\export1.native/folder1
A b:\export1.native/folder1/file7.txt
A b:\export1.native/folder1/folder2
A b:\export1.native/folder1/folder2/file8.txt
A b:\export1.native/folder3
Info: PYSVN CMD export --native-eol CR file:///b:/repos/trunk/test b:\export1.cr
A b:\export1.cr
A b:\export1.cr/file1.txt
A b:\export1.cr/file1b.txt
A b:\export1.cr/file2.txt
A b:\export1.cr/file3.txt
A b:\export1.cr/file4.txt
A b:\export1.cr/file5.txt
A b:\export1.cr/folder1
A b:\export1.cr/folder1/file7.txt
A b:\export1.cr/folder1/folder2
A b:\export1.cr/folder1/folder2/file8.txt
A b:\export1.cr/folder3
Info: PYSVN CMD export --native-eol LF file:///b:/repos/trunk/test b:\export1.lf
A b:\export1.lf
A b:\export1.lf/file1.txt
A b:\export1.lf/file1b.txt
A b:\export1.lf/file2.txt
A b:\export1.lf/file3.txt
A b:\export1.lf/file4.txt
A b:\export1.lf/file5.txt
A b:\export1.lf/folder1
A b:\export1.lf/folder1/file7.txt
A b:\export1.lf/folder1/folder2
A b:\export1.lf/folder1/folder2/file8.txt
A b:\export1.lf/folder3
Info: PYSVN CMD export --native-eol CRLF file:///b:/repos/trunk/test b:\export1.crlf
A b:\export1.crlf
A b:\export1.crlf/file1.txt
A b:\export1.crlf/file1b.txt
A b:\export1.crlf/file2.txt
A b:\export1.crlf/file3.txt
A b:\export1.crlf/file4.txt
A b:\export1.crlf/file5.txt
A b:\export1.crlf/folder1
A b:\export1.crlf/folder1/file7.txt
A b:\export1.crlf/folder1/folder2
A b:\export1.crlf/folder1/folder2/file8.txt
A b:\export1.crlf/folder3
Info: CMD dir /s /b b:\export1.native
b:\export1.native\file1.txt
b:\export1.native\file1b.txt
b:\export1.native\file2.txt
b:\export1.native\file3.txt
b:\export1.native\file4.txt
b:\export1.native\file5.txt
b:\export1.native\folder1
b:\export1.native\folder3
b:\export1.native\folder1\file7.txt
b:\export1.native\folder1\folder2
b:\export1.native\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.cr
b:\export1.cr\file1.txt
b:\export1.cr\file1b.txt
b:\export1.cr\file2.txt
b:\export1.cr\file3.txt
b:\export1.cr\file4.txt
b:\export1.cr\file5.txt
b:\export1.cr\folder1
b:\export1.cr\folder3
b:\export1.cr\folder1\file7.txt
b:\export1.cr\folder1\folder2
b:\export1.cr\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.lf
b:\export1.lf\file1.txt
b:\export1.lf\file1b.txt
b:\export1.lf\file2.txt
b:\export1.lf\file3.txt
b:\export1.lf\file4.txt
b:\export1.lf\file5.txt
b:\export1.lf\folder1
b:\export1.lf\folder3
b:\export1.lf\folder1\file7.txt
b:\export1.lf\folder1\folder2
b:\export1.lf\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.crlf
b:\export1.crlf\file1.txt
b:\export1.crlf\file1b.txt
b:\export1.crlf\file2.txt
b:\export1.crlf\file3.txt
b:\export1.crlf\file4.txt
b:\export1.crlf\file5.txt
b:\export1.crlf\folder1
b:\export1.crlf\folder3
b:\export1.crlf\folder1\file7.txt
b:\export1.crlf\folder1\folder2
b:\export1.crlf\folder1\folder2\file8.txt
Info: Test - import
Info: Test - info
Info: PYSVN CMD info b:\wc2\test
Path: b:\wc2\test
Name: .
Url: file:///B:/repos/trunk/test
Repository UUID: 00e68b39-61ed-714e-973f-d90437a44df9
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 19-Nov-2012 19:13:29
Info: PYSVN CMD info b:\wc2\test\file1.txt
Path: b:\wc2\test\file1.txt
Name: file1.txt
Url: file:///B:/repos/trunk/test/file1.txt
Repository UUID: 00e68b39-61ed-714e-973f-d90437a44df9
Revision: 4
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 19-Nov-2012 19:13:29
Text Last Updated: 19-Nov-2012 19:13:29
Checksum: cb0b37e264ebcc467e9f37a069e034d7
Info: Test - log
Info: PYSVN CMD log b:\wc2
------------------------------------------------------------
rev 7: barry | 19-Nov-2012 19:13:30 | 1 lines
copy test
------------------------------------------------------------
rev 4: barry | 19-Nov-2012 19:13:29 | 1 lines
commit modified file
------------------------------------------------------------
rev 3: barry | 19-Nov-2012 19:13:28 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 19-Nov-2012 19:13:27 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 19-Nov-2012 19:13:27 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos/trunk/test
file:///B:/repos/trunk/test/file1.txt
file:///B:/repos/trunk/test/file1b.txt
file:///B:/repos/trunk/test/file2.txt
file:///B:/repos/trunk/test/file3.txt
file:///B:/repos/trunk/test/file4.txt
file:///B:/repos/trunk/test/file5.txt
file:///B:/repos/trunk/test/folder1
file:///B:/repos/trunk/test/folder3
Info: PYSVN CMD ls -v file:///b:/repos/trunk/test
4 barry 25 19-Nov-2012 19:13:29 file:///B:/repos/trunk/test/file1.txt
7 barry 23 19-Nov-2012 19:13:30 file:///B:/repos/trunk/test/file1b.txt
3 barry 17 19-Nov-2012 19:13:28 file:///B:/repos/trunk/test/file2.txt
3 barry 17 19-Nov-2012 19:13:28 file:///B:/repos/trunk/test/file3.txt
3 barry 17 19-Nov-2012 19:13:28 file:///B:/repos/trunk/test/file4.txt
3 barry 17 19-Nov-2012 19:13:28 file:///B:/repos/trunk/test/file5.txt
3 barry 0 19-Nov-2012 19:13:28 file:///B:/repos/trunk/test/folder1
3 barry 0 19-Nov-2012 19:13:28 file:///B:/repos/trunk/test/folder3
Info: PYSVN CMD ls b:\wc2\test
b:/wc2/test/file1.txt
b:/wc2/test/file1b.txt
b:/wc2/test/file2.txt
b:/wc2/test/file3.txt
b:/wc2/test/file4.txt
b:/wc2/test/file5.txt
b:/wc2/test/folder1
b:/wc2/test/folder3
Info: PYSVN CMD ls -v b:\wc2\test
4 barry 25 19-Nov-2012 19:13:29 b:/wc2/test/file1.txt
7 barry 23 19-Nov-2012 19:13:30 b:/wc2/test/file1b.txt
3 barry 17 19-Nov-2012 19:13:28 b:/wc2/test/file2.txt
3 barry 17 19-Nov-2012 19:13:28 b:/wc2/test/file3.txt
3 barry 17 19-Nov-2012 19:13:28 b:/wc2/test/file4.txt
3 barry 17 19-Nov-2012 19:13:28 b:/wc2/test/file5.txt
3 barry 0 19-Nov-2012 19:13:28 b:/wc2/test/folder1
3 barry 0 19-Nov-2012 19:13:28 b:/wc2/test/folder3
Info: Test - merge - see below
Info: Test - mkdir - done above
Info: Test - move
Info: Create File msg.tmp - move url test
Info: PYSVN CMD move file:///b:/repos/trunk/test/file2.txt file:///b:/repos/trunk/test/file2b.txt
Log message
--- -------
Info: PYSVN CMD move b:\wc2\test\file3.txt b:\wc2\test\file3b.txt
A b:/wc2/test/file3b.txt
D b:/wc2/test/file3.txt
Info: PYSVN CMD checkin b:\wc2 -m "move wc test"
A B:/wc2/test/file3b.txt
D B:/wc2/test/file3.txt
M B:/wc2/test/file1b.txt
Revision 9
Info: Test - status
Info: Append File b:\wc1\test\file4.txt - file 4 is changing
Info: PYSVN CMD checkin b:\wc1 -m "change wc1 for status -u to detect"
M B:/wc1/test/file4.txt
Revision 10
Info: PYSVN CMD status b:\wc2
Info: PYSVN CMD status --verbose b:\wc2
4 4 barry b:\wc2
4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
4 3 barry b:\wc2\test\file2.txt
9 9 barry b:\wc2\test\file3b.txt
4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
4 3 barry b:\wc2\test\folder1
4 3 barry b:\wc2\test\folder1\file7.txt
4 3 barry b:\wc2\test\folder1\folder2
4 3 barry b:\wc2\test\folder1\folder2\file8.txt
4 3 barry b:\wc2\test\folder3
Info: PYSVN CMD status --show-updates b:\wc2
M b:\wc2\test
D b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
M b:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry b:\wc2
M 4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
D 4 3 barry b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
9 9 barry b:\wc2\test\file3b.txt
M 4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
4 3 barry b:\wc2\test\folder1
4 3 barry b:\wc2\test\folder1\file7.txt
4 3 barry b:\wc2\test\folder1\folder2
4 3 barry b:\wc2\test\folder1\folder2\file8.txt
4 3 barry b:\wc2\test\folder3
Info: PYSVN CMD update
A file1b.txt
A file2b.txt
A file3b.txt
D file2.txt
D file3.txt
Updated to revision 10
Info: PYSVN CMD status --show-updates b:\wc2
M b:\wc2\test
D b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
M b:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry b:\wc2
M 4 4 barry b:\wc2\test
4 4 barry b:\wc2\test\file1.txt
9 9 barry b:\wc2\test\file1b.txt
D 4 3 barry b:\wc2\test\file2.txt
A b:\wc2\test\file2b.txt
9 9 barry b:\wc2\test\file3b.txt
M 4 3 barry b:\wc2\test\file4.txt
4 3 barry b:\wc2\test\file5.txt
4 3 barry b:\wc2\test\folder1
4 3 barry b:\wc2\test\folder1\file7.txt
4 3 barry b:\wc2\test\folder1\folder2
4 3 barry b:\wc2\test\folder1\folder2\file8.txt
4 3 barry b:\wc2\test\folder3
Info: PYSVN CMD checkin b:\wc2 -m "prop change"
Nothing to commit
Info: Test - propdel
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD propset test:prop1 del_me file4.txt
property_added file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: PYSVN CMD propdel test:prop1 file4.txt
property_deleted file4.txt
Info: PYSVN CMD proplist -v file4.txt
Info: Test - propget
Info: PYSVN CMD propget svn:eol-style file4.txt
Info: Test - proplist - see above
Info: Test - propset
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD proplist -v file4.txt
Info: PYSVN CMD propset svn:eol-style native file4.txt
property_added file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Test - remove
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD remove file5.txt
D file5.txt
Info: PYSVN CMD status
M file4.txt
D file5.txt
Info: Test - resolved
Info: Append File b:\wc1\test\file4.txt - conflict in file4 yes
Info: Append File b:\wc2\test\file4.txt - conflict in file4 no
Info: PYSVN CMD checkin b:\wc1\test -m "make a conflict part 1"
M B:/wc1/test/file4.txt
Revision 11
Info: PYSVN CMD update b:\wc2\test
callback_conflict_resolver
action:
base_file: b:\wc2\test\.svn\text-base\file4.txt.svn-base
is_binary: False
kind:
merged_file: b:\wc2\test\.svn\tmp\file4.txt.tmp
mime_type: None
my_file: b:\wc2\test\.svn\tmp\svn-114E7DDD
node_kind:
operation:
path: b:/wc2/test/file4.txt
property_name: None
reason:
src_left_version: None
src_right_version: None
their_file: b:\wc2\test\.svn\tmp\text-base\file4.txt.svn-base
A b:/wc2/test/file2b.txt
D b:/wc2/test/file2.txt
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file4.txt
Updated to revision 11
Info: PYSVN CMD status
CM file4.txt
? file4.txt.mine
? file4.txt.r11
? file4.txt.r4
D file5.txt
Info: CMD copy b:\wc2\test\file4.txt.mine b:\wc2\test\file4.txt
1 file(s) copied.
Info: PYSVN CMD resolved b:\wc2\test\file4.txt
R b:/wc2/test/file4.txt
Info: PYSVN CMD checkin b:\wc2\test\file4.txt -m "resolve a confict part 2"
M B:/wc2/test/file4.txt
Revision 12
Info: Test - revert
Info: PYSVN CMD revert file5.txt
R file5.txt
Info: PYSVN CMD status
Info: Test - revproplist
Info: PYSVN CMD revproplist file:///b:/repos/trunk
Revision: 12
svn:author: barry
svn:date: 2012-11-19T19:13:35.239459Z
svn:log: resolve a confict part 2
Info: Test - revpropget
Info: PYSVN CMD revpropget svn:log file:///b:/repos/trunk
Revision: 12
svn:log: resolve a confict part 2
Info: PYSVN CMD revpropget no_such_prop file:///b:/repos/trunk
Revision: 12
no_such_prop: None
Info: Test - revpropset
Info: PYSVN CMD revpropset svn:log "Hello world" file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - revpropdel
Info: PYSVN CMD revpropdel svn:log file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - status - see above
Info: Test - relocate
Info: CMD mkdir b:\root
Info: CMD move b:\repos b:\root
1 dir(s) moved.
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///B:/repos/trunk
Repository UUID: 00e68b39-61ed-714e-973f-d90437a44df9
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 19-Nov-2012 19:13:27
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc1
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 00e68b39-61ed-714e-973f-d90437a44df9
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 19-Nov-2012 19:13:27
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/repos/trunk
Repository UUID: 00e68b39-61ed-714e-973f-d90437a44df9
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 19-Nov-2012 19:13:29
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc2
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 00e68b39-61ed-714e-973f-d90437a44df9
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 19-Nov-2012 19:13:29
Info: Test - switch
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 00e68b39-61ed-714e-973f-d90437a44df9
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 19-Nov-2012 19:13:29
Info: PYSVN CMD switch b:\wc2 file:///b:/root/repos/tags/version1
A b:/wc2/test/file2.txt
A b:/wc2/test/file3.txt
D b:/wc2/test/file1b.txt
D b:/wc2/test/file2b.txt
D b:/wc2/test/file3b.txt
U b:/wc2
U b:/wc2/test
U b:/wc2/test/file4.txt
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/tags/version1
Repository UUID: 00e68b39-61ed-714e-973f-d90437a44df9
Revision: 12
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 19-Nov-2012 19:13:30
Info: Test - update - see above
Info: Test - Info: Testing - merge
Info: PYSVN CMD checkout file:///b:/root/repos/trunk b:\wc3
A b:/wc3/test
A b:/wc3/test/file1.txt
A b:/wc3/test/file1b.txt
A b:/wc3/test/file2b.txt
A b:/wc3/test/file3b.txt
A b:/wc3/test/file4.txt
A b:/wc3/test/file5.txt
A b:/wc3/test/folder1
A b:/wc3/test/folder1/file7.txt
A b:/wc3/test/folder1/folder2
A b:/wc3/test/folder1/folder2/file8.txt
A b:/wc3/test/folder3
U b:/wc3
Checked out revision 12
Info: CMD cd b:\wc3\test
Info: Create File file-merge-1.txt - test add file merge 1
Info: Create File file-merge-2.txt - test add file merge 2
Info: PYSVN CMD add file-merge-1.txt
A file-merge-1.txt
Info: PYSVN CMD add file-merge-2.txt
A file-merge-2.txt
Info: PYSVN CMD commit -m "add test merge files" .
A b:/wc3/test/file-merge-1.txt
A b:/wc3/test/file-merge-2.txt
Revision 13
Info: Create File msg.tmp - make a branch
Info: PYSVN CMD copy file:///b:/root/repos/trunk/test file:///b:/root/repos/trunk/test-branch
Log message
--- -------
Info: PYSVN CMD update b:\wc3
A b:/wc3/test-branch
A b:/wc3/test-branch/file-merge-1.txt
A b:/wc3/test-branch/file-merge-2.txt
A b:/wc3/test-branch/file1.txt
A b:/wc3/test-branch/file1b.txt
A b:/wc3/test-branch/file2b.txt
A b:/wc3/test-branch/file3b.txt
A b:/wc3/test-branch/file4.txt
A b:/wc3/test-branch/file5.txt
A b:/wc3/test-branch/folder1
A b:/wc3/test-branch/folder1/file7.txt
A b:/wc3/test-branch/folder1/folder2
A b:/wc3/test-branch/folder1/folder2/file8.txt
A b:/wc3/test-branch/folder3
U b:/wc3
U b:/wc3/test
Updated to revision 14
Info: Create File file-merge-3.txt - test add file merge 3
Info: PYSVN CMD add file-merge-3.txt
A file-merge-3.txt
Info: PYSVN CMD rm file-merge-1.txt
D file-merge-1.txt
Info: Append File file-merge-2.txt - modify merge 2
Info: PYSVN CMD commit -m "change test merge files" .
A b:/wc3/test/file-merge-3.txt
D b:/wc3/test/file-merge-1.txt
M b:/wc3/test/file-merge-2.txt
Revision 15
Info: PYSVN CMD merge --dry-run --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
A b:/wc3/test-branch/file-merge-3.txt
D b:/wc3/test-branch/file-merge-1.txt
U b:/wc3/test-branch
U b:/wc3/test-branch/file-merge-2.txt
merge_begin b:/wc3/test-branch
merge_begin b:/wc3/test-branch/file-merge-2.txt
merge_completed b:/wc3/test-branch
Info: PYSVN CMD merge --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
merge_completed b:/wc3/test-branch
Info: PYSVN CMD status b:\wc3\test-branch
M b:\wc3\test-branch
D b:\wc3\test-branch\file-merge-1.txt
MM b:\wc3\test-branch\file-merge-2.txt
A + b:\wc3\test-branch\file-merge-3.txt
M b:\wc3\test-branch\file1.txt
M b:\wc3\test-branch\file1b.txt
M b:\wc3\test-branch\file2b.txt
M b:\wc3\test-branch\file3b.txt
M b:\wc3\test-branch\file4.txt
M b:\wc3\test-branch\file5.txt
Info: PYSVN CMD diff b:\wc3\test-branch
Property changes on: b:\wc3\test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r15*
Property changes on: b:\wc3\test-branch\file1b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1b.txt:r15
Property changes on: b:\wc3\test-branch\file2b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file2b.txt:r15
Property changes on: b:\wc3\test-branch\file4.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file4.txt:r15
Property changes on: b:\wc3\test-branch\file3b.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file3b.txt:r15
Property changes on: b:\wc3\test-branch\file5.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file5.txt:r15
Index: b:/wc3/test-branch/file-merge-1.txt
===================================================================
--- b:/wc3/test-branch/file-merge-1.txt (revision 14)
+++ b:/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: b:/wc3/test-branch/file-merge-2.txt
===================================================================
--- b:/wc3/test-branch/file-merge-2.txt (revision 14)
+++ b:/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Property changes on: b:\wc3\test-branch\file-merge-2.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-2.txt:r15
Property changes on: b:\wc3\test-branch\file-merge-3.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-3.txt:r15
Property changes on: b:\wc3\test-branch\file1.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file1.txt:r15
Info: CMD c:\python32.win32\python.exe C:\wc\svn\pysvn\Extension\Tests\test_01_set_get_tests.py b:\configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Test - end
pysvn-1.8.0/Tests/test-01.win32.known_good-py3-svn1.7.log 000644 000771 000771 00000063271 12177165073 022036 0 ustar 00barry 000000 000000 WorkDir: C:\wc\svn\pysvn\Extension
PYTHON: c:\python32.win32\python.exe
Username: barry
Info: PYSVN CMD c:\python32.win32\python.exe C:\wc\svn\pysvn\Extension\Examples\Client\svn_cmd.py --pysvn-testing 01.01.00 --config-dir b:\configdir
Info: CMD mkdir testroot-01
Info: CMD subst b: C:\wc\svn\pysvn\Extension\Tests\testroot-01
Info: CMD cd /d b:\
Info: CMD svnadmin create b:\repos
Info: Test - mkdir
Info: PYSVN CMD mkdir file:///b:/repos/trunk -m "test-01 add trunk"
Info: PYSVN CMD mkdir file:///b:/repos/trunk/test -m "test-01 add test"
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos -v -R
2 barry 0 03-Aug-2013 12:28:18 file:///B:/repos/trunk
2 barry 0 03-Aug-2013 12:28:18 file:///B:/repos/trunk/test
Info: Test - checkout
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc1
A B:/wc1/test
U B:/wc1
update_started B:/wc1
Checked out revision 2
Info: CMD dir b:\wc1 /s /b /a-h
b:\wc1\test
b:\wc1\.svn\entries
b:\wc1\.svn\format
b:\wc1\.svn\pristine
b:\wc1\.svn\tmp
b:\wc1\.svn\wc.db
Info: CMD cd /d b:\wc1\test
Info: Test - add
Info: Create File file1.txt - test add file 1
Info: Create File file2.txt - test add file 2
Info: Create File file3.txt - test add file 3
Info: Create File file4.txt - test add file 4
Info: Create File file5.txt - test add file 5
Info: CMD mkdir folder1
Info: Create File folder1\file7.txt - test add file 7
Info: CMD mkdir folder1\folder2
Info: Create File folder1\folder2\file8.txt - test add file 8
Info: CMD mkdir folder3
Info: Create File folder3\file9.txt - test add file 9
Info: CMD mkdir folder3\folder4
Info: Create File folder3\folder4\file10.txt - test add file 10
Info: PYSVN CMD add file1.txt
A B:/wc1/test/file1.txt
Info: PYSVN CMD add file2.txt
A B:/wc1/test/file2.txt
Info: PYSVN CMD add file3.txt
A B:/wc1/test/file3.txt
Info: PYSVN CMD add file4.txt
A B:/wc1/test/file4.txt
Info: PYSVN CMD add --force file5.txt
A B:/wc1/test/file5.txt
Info: PYSVN CMD add folder1
A B:/wc1/test/folder1
A B:/wc1/test/folder1/file7.txt
A B:/wc1/test/folder1/folder2
A B:/wc1/test/folder1/folder2/file8.txt
Info: PYSVN CMD add --non-recursive folder3
A B:/wc1/test/folder3
Info: PYSVN CMD checkin -m "commit added files"
A B:/wc1/test/file1.txt
A B:/wc1/test/file2.txt
A B:/wc1/test/file3.txt
A B:/wc1/test/file4.txt
A B:/wc1/test/file5.txt
A B:/wc1/test/folder1
A B:/wc1/test/folder1/file7.txt
A B:/wc1/test/folder1/folder2
A B:/wc1/test/folder1/folder2/file8.txt
A B:/wc1/test/folder3
Revision 3
Info: Test - update - get a new wc that will update
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc2
A B:/wc2/test
A B:/wc2/test/file1.txt
A B:/wc2/test/file2.txt
A B:/wc2/test/file3.txt
A B:/wc2/test/file4.txt
A B:/wc2/test/file5.txt
A B:/wc2/test/folder1
A B:/wc2/test/folder1/file7.txt
A B:/wc2/test/folder1/folder2
A B:/wc2/test/folder1/folder2/file8.txt
A B:/wc2/test/folder3
U B:/wc2
update_started B:/wc2
Checked out revision 3
Info: Test - - checkin a mod from wc1
Info: Append File b:\wc1\test\file1.txt - line 2
Info: PYSVN CMD checkin -m "commit modified file"
M B:/wc1/test/file1.txt
Revision 4
Info: PYSVN CMD checkin -m "commit modified file"
Nothing to commit
Info: Test - update
Info: PYSVN CMD update b:\wc2
U B:/wc2
U B:/wc2/test
U B:/wc2/test/file1.txt
update_started B:/wc2
Updated to revision 4
Info: Test - the rest in lexical order
Info: Test - annotate
Info: PYSVN CMD annotate b:\wc2\test\file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2013-08-03T11:28:19.903853Z | test add file 1
1| r4 | barry | 2013-08-03T11:28:20.449580Z | line 2
Info: Test - cat
Info: PYSVN CMD cat -r head file:///b:/repos/trunk/test/file1.txt
test add file 1
line 2
Info: Test - cleanup
Info: Test - copy
Info: PYSVN CMD mkdir file:///b:/repos/tags -m "test-01 add tags"
Info: Create File msg.tmp - tag the trunk
Info: PYSVN CMD copy file:///b:/repos/trunk file:///b:/repos/tags/version1
Log message
--- -------
Info: PYSVN CMD ls -v file:///b:/repos/tags
6 barry 0 03-Aug-2013 12:28:21 file:///B:/repos/tags/version1
Info: PYSVN CMD copy b:\wc2\test\file1.txt b:\wc2\test\file1b.txt
A B:/wc2/test/file1b.txt
Info: PYSVN CMD propset svn:eol-style native b:\wc2\test\file1b.txt
property_added B:/wc2/test/file1b.txt
Info: PYSVN CMD checkin b:\wc2 -m "copy test"
A B:/wc2/test/file1b.txt
Revision 7
Info: Test - diff
Info: Append File b:\wc2\test\file1b.txt - new line
Info: PYSVN CMD diff b:\wc2
Index: B:/wc2/test/file1b.txt
===================================================================
--- B:/wc2/test/file1b.txt (revision 7)
+++ B:/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Test - export
Info: PYSVN CMD export file:///b:/repos/trunk/test b:\export1.native
A b:\export1.native
A b:\export1.native/file1.txt
A b:\export1.native/file1b.txt
A b:\export1.native/file2.txt
A b:\export1.native/file3.txt
A b:\export1.native/file4.txt
A b:\export1.native/file5.txt
A b:\export1.native/folder1
A b:\export1.native/folder1/file7.txt
A b:\export1.native/folder1/folder2
A b:\export1.native/folder1/folder2/file8.txt
A b:\export1.native/folder3
Info: PYSVN CMD export --native-eol CR file:///b:/repos/trunk/test b:\export1.cr
A b:\export1.cr
A b:\export1.cr/file1.txt
A b:\export1.cr/file1b.txt
A b:\export1.cr/file2.txt
A b:\export1.cr/file3.txt
A b:\export1.cr/file4.txt
A b:\export1.cr/file5.txt
A b:\export1.cr/folder1
A b:\export1.cr/folder1/file7.txt
A b:\export1.cr/folder1/folder2
A b:\export1.cr/folder1/folder2/file8.txt
A b:\export1.cr/folder3
Info: PYSVN CMD export --native-eol LF file:///b:/repos/trunk/test b:\export1.lf
A b:\export1.lf
A b:\export1.lf/file1.txt
A b:\export1.lf/file1b.txt
A b:\export1.lf/file2.txt
A b:\export1.lf/file3.txt
A b:\export1.lf/file4.txt
A b:\export1.lf/file5.txt
A b:\export1.lf/folder1
A b:\export1.lf/folder1/file7.txt
A b:\export1.lf/folder1/folder2
A b:\export1.lf/folder1/folder2/file8.txt
A b:\export1.lf/folder3
Info: PYSVN CMD export --native-eol CRLF file:///b:/repos/trunk/test b:\export1.crlf
A b:\export1.crlf
A b:\export1.crlf/file1.txt
A b:\export1.crlf/file1b.txt
A b:\export1.crlf/file2.txt
A b:\export1.crlf/file3.txt
A b:\export1.crlf/file4.txt
A b:\export1.crlf/file5.txt
A b:\export1.crlf/folder1
A b:\export1.crlf/folder1/file7.txt
A b:\export1.crlf/folder1/folder2
A b:\export1.crlf/folder1/folder2/file8.txt
A b:\export1.crlf/folder3
Info: CMD dir /s /b b:\export1.native
b:\export1.native\file1.txt
b:\export1.native\file1b.txt
b:\export1.native\file2.txt
b:\export1.native\file3.txt
b:\export1.native\file4.txt
b:\export1.native\file5.txt
b:\export1.native\folder1
b:\export1.native\folder3
b:\export1.native\folder1\file7.txt
b:\export1.native\folder1\folder2
b:\export1.native\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.cr
b:\export1.cr\file1.txt
b:\export1.cr\file1b.txt
b:\export1.cr\file2.txt
b:\export1.cr\file3.txt
b:\export1.cr\file4.txt
b:\export1.cr\file5.txt
b:\export1.cr\folder1
b:\export1.cr\folder3
b:\export1.cr\folder1\file7.txt
b:\export1.cr\folder1\folder2
b:\export1.cr\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.lf
b:\export1.lf\file1.txt
b:\export1.lf\file1b.txt
b:\export1.lf\file2.txt
b:\export1.lf\file3.txt
b:\export1.lf\file4.txt
b:\export1.lf\file5.txt
b:\export1.lf\folder1
b:\export1.lf\folder3
b:\export1.lf\folder1\file7.txt
b:\export1.lf\folder1\folder2
b:\export1.lf\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.crlf
b:\export1.crlf\file1.txt
b:\export1.crlf\file1b.txt
b:\export1.crlf\file2.txt
b:\export1.crlf\file3.txt
b:\export1.crlf\file4.txt
b:\export1.crlf\file5.txt
b:\export1.crlf\folder1
b:\export1.crlf\folder3
b:\export1.crlf\folder1\file7.txt
b:\export1.crlf\folder1\folder2
b:\export1.crlf\folder1\folder2\file8.txt
Info: Test - import
Info: Test - info
Info: PYSVN CMD info b:\wc2\test
Path: b:\wc2\test
Name: .
Url: file:///B:/repos/trunk/test
Repository UUID: 7601caab-e0e9-2f44-bdfb-7c4596ad2e37
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 03-Aug-2013 12:28:20
Info: PYSVN CMD info b:\wc2\test\file1.txt
Path: b:\wc2\test\file1.txt
Name: file1.txt
Url: file:///B:/repos/trunk/test/file1.txt
Repository UUID: 7601caab-e0e9-2f44-bdfb-7c4596ad2e37
Revision: 4
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 03-Aug-2013 12:28:20
Text Last Updated: 03-Aug-2013 12:28:20
Checksum: cb0b37e264ebcc467e9f37a069e034d7
Info: Test - log
Info: PYSVN CMD log b:\wc2
------------------------------------------------------------
rev 7: barry | 03-Aug-2013 12:28:21 | 1 lines
copy test
------------------------------------------------------------
rev 4: barry | 03-Aug-2013 12:28:20 | 1 lines
commit modified file
------------------------------------------------------------
rev 3: barry | 03-Aug-2013 12:28:19 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 03-Aug-2013 12:28:18 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 03-Aug-2013 12:28:18 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos/trunk/test
file:///B:/repos/trunk/test/file1.txt
file:///B:/repos/trunk/test/file1b.txt
file:///B:/repos/trunk/test/file2.txt
file:///B:/repos/trunk/test/file3.txt
file:///B:/repos/trunk/test/file4.txt
file:///B:/repos/trunk/test/file5.txt
file:///B:/repos/trunk/test/folder1
file:///B:/repos/trunk/test/folder3
Info: PYSVN CMD ls -v file:///b:/repos/trunk/test
4 barry 25 03-Aug-2013 12:28:20 file:///B:/repos/trunk/test/file1.txt
7 barry 23 03-Aug-2013 12:28:21 file:///B:/repos/trunk/test/file1b.txt
3 barry 17 03-Aug-2013 12:28:19 file:///B:/repos/trunk/test/file2.txt
3 barry 17 03-Aug-2013 12:28:19 file:///B:/repos/trunk/test/file3.txt
3 barry 17 03-Aug-2013 12:28:19 file:///B:/repos/trunk/test/file4.txt
3 barry 17 03-Aug-2013 12:28:19 file:///B:/repos/trunk/test/file5.txt
3 barry 0 03-Aug-2013 12:28:19 file:///B:/repos/trunk/test/folder1
3 barry 0 03-Aug-2013 12:28:19 file:///B:/repos/trunk/test/folder3
Info: PYSVN CMD ls b:\wc2\test
B:/wc2/test/file1.txt
B:/wc2/test/file1b.txt
B:/wc2/test/file2.txt
B:/wc2/test/file3.txt
B:/wc2/test/file4.txt
B:/wc2/test/file5.txt
B:/wc2/test/folder1
B:/wc2/test/folder3
Info: PYSVN CMD ls -v b:\wc2\test
4 barry 25 03-Aug-2013 12:28:20 B:/wc2/test/file1.txt
7 barry 23 03-Aug-2013 12:28:21 B:/wc2/test/file1b.txt
3 barry 17 03-Aug-2013 12:28:19 B:/wc2/test/file2.txt
3 barry 17 03-Aug-2013 12:28:19 B:/wc2/test/file3.txt
3 barry 17 03-Aug-2013 12:28:19 B:/wc2/test/file4.txt
3 barry 17 03-Aug-2013 12:28:19 B:/wc2/test/file5.txt
3 barry 0 03-Aug-2013 12:28:19 B:/wc2/test/folder1
3 barry 0 03-Aug-2013 12:28:19 B:/wc2/test/folder3
Info: Test - merge - see below
Info: Test - mkdir - done above
Info: Test - move
Info: Create File msg.tmp - move url test
Info: PYSVN CMD move file:///b:/repos/trunk/test/file2.txt file:///b:/repos/trunk/test/file2b.txt
Log message
--- -------
Info: PYSVN CMD move b:\wc2\test\file3.txt b:\wc2\test\file3b.txt
A B:/wc2/test/file3b.txt
D B:/wc2/test/file3.txt
Info: PYSVN CMD checkin b:\wc2 -m "move wc test"
A B:/wc2/test/file3b.txt
D B:/wc2/test/file3.txt
M B:/wc2/test/file1b.txt
Revision 9
Info: Test - status
Info: Append File b:\wc1\test\file4.txt - file 4 is changing
Info: PYSVN CMD checkin b:\wc1 -m "change wc1 for status -u to detect"
M B:/wc1/test/file4.txt
Revision 10
Info: PYSVN CMD status b:\wc2
Info: PYSVN CMD status --verbose b:\wc2
4 4 barry B:\wc2
4 4 barry B:\wc2\test
4 4 barry B:\wc2\test\file1.txt
9 9 barry B:\wc2\test\file1b.txt
4 3 barry B:\wc2\test\file2.txt
9 9 barry B:\wc2\test\file3b.txt
4 3 barry B:\wc2\test\file4.txt
4 3 barry B:\wc2\test\file5.txt
4 3 barry B:\wc2\test\folder1
4 3 barry B:\wc2\test\folder1\file7.txt
4 3 barry B:\wc2\test\folder1\folder2
4 3 barry B:\wc2\test\folder1\folder2\file8.txt
4 3 barry B:\wc2\test\folder3
Info: PYSVN CMD status --show-updates b:\wc2
M B:\wc2\test
D B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
M B:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry B:\wc2
M 4 4 barry B:\wc2\test
4 4 barry B:\wc2\test\file1.txt
9 9 barry B:\wc2\test\file1b.txt
D 4 3 barry B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
9 9 barry B:\wc2\test\file3b.txt
M 4 3 barry B:\wc2\test\file4.txt
4 3 barry B:\wc2\test\file5.txt
4 3 barry B:\wc2\test\folder1
4 3 barry B:\wc2\test\folder1\file7.txt
4 3 barry B:\wc2\test\folder1\folder2
4 3 barry B:\wc2\test\folder1\folder2\file8.txt
4 3 barry B:\wc2\test\folder3
Info: PYSVN CMD update
A B:/wc1/test/file1b.txt
A B:/wc1/test/file2b.txt
A B:/wc1/test/file3b.txt
D B:/wc1/test/file2.txt
D B:/wc1/test/file3.txt
U B:/wc1
U B:/wc1/test
update_started B:/wc1/test
Updated to revision 10
Info: PYSVN CMD status --show-updates b:\wc2
M B:\wc2\test
D B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
M B:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry B:\wc2
M 4 4 barry B:\wc2\test
4 4 barry B:\wc2\test\file1.txt
9 9 barry B:\wc2\test\file1b.txt
D 4 3 barry B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
9 9 barry B:\wc2\test\file3b.txt
M 4 3 barry B:\wc2\test\file4.txt
4 3 barry B:\wc2\test\file5.txt
4 3 barry B:\wc2\test\folder1
4 3 barry B:\wc2\test\folder1\file7.txt
4 3 barry B:\wc2\test\folder1\folder2
4 3 barry B:\wc2\test\folder1\folder2\file8.txt
4 3 barry B:\wc2\test\folder3
Info: PYSVN CMD checkin b:\wc2 -m "prop change"
Nothing to commit
Info: Test - propdel
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD propset test:prop1 del_me file4.txt
property_added B:/wc2/test/file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: PYSVN CMD propdel test:prop1 file4.txt
property_deleted B:/wc2/test/file4.txt
Info: PYSVN CMD proplist -v file4.txt
Info: Test - propget
Info: PYSVN CMD propget svn:eol-style file4.txt
Info: Test - proplist - see above
Info: Test - propset
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD proplist -v file4.txt
Info: PYSVN CMD propset svn:eol-style native file4.txt
property_added B:/wc2/test/file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Test - remove
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD remove file5.txt
D B:/wc2/test/file5.txt
Info: PYSVN CMD status
MM file4.txt
D file5.txt
Info: Test - resolved
Info: Append File b:\wc1\test\file4.txt - conflict in file4 yes
Info: Append File b:\wc2\test\file4.txt - conflict in file4 no
Info: PYSVN CMD checkin b:\wc1\test -m "make a conflict part 1"
M B:/wc1/test/file4.txt
Revision 11
Info: PYSVN CMD update b:\wc2\test
callback_conflict_resolver
action:
base_file: B:\wc2\.svn\pristine\4e\4e86be31cda02c6a3fb50fe49d570555a9c28d66.svn-base
is_binary: False
kind:
merged_file: B:\wc2\.svn\tmp\file4.txt.tmp
mime_type: None
my_file: B:\wc2\.svn\tmp\svn-1585378D
node_kind:
operation:
path: B:/wc2/test/file4.txt
property_name: None
reason:
src_left_version: None
src_right_version: None
their_file: B:\wc2\.svn\pristine\68\68429c38aebed8d3491b3f4a50041ad273e78cf7.svn-base
A B:/wc2/test/file2b.txt
D B:/wc2/test/file2.txt
U B:/wc2
U B:/wc2/test
U B:/wc2/test/file4.txt
update_started B:/wc2/test
Updated to revision 11
Info: PYSVN CMD status
CM file4.txt
? file4.txt.mine
? file4.txt.r11
? file4.txt.r4
D file5.txt
Info: CMD copy b:\wc2\test\file4.txt.mine b:\wc2\test\file4.txt
1 file(s) copied.
Info: PYSVN CMD resolved b:\wc2\test\file4.txt
R B:/wc2/test/file4.txt
Info: PYSVN CMD checkin b:\wc2\test\file4.txt -m "resolve a confict part 2"
M B:/wc2/test/file4.txt
Revision 12
Info: Test - revert
Info: PYSVN CMD revert file5.txt
R B:/wc2/test/file5.txt
Info: PYSVN CMD status
Info: Test - revproplist
Info: PYSVN CMD revproplist file:///b:/repos/trunk
Revision: 12
svn:author: barry
svn:date: 2013-08-03T11:28:26.920343Z
svn:log: resolve a confict part 2
Info: Test - revpropget
Info: PYSVN CMD revpropget svn:log file:///b:/repos/trunk
Revision: 12
svn:log: resolve a confict part 2
Info: PYSVN CMD revpropget no_such_prop file:///b:/repos/trunk
Revision: 12
no_such_prop: None
Info: Test - revpropset
Info: PYSVN CMD revpropset svn:log "Hello world" file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - revpropdel
Info: PYSVN CMD revpropdel svn:log file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - status - see above
Info: Test - relocate
Info: CMD mkdir b:\root
Info: CMD move b:\repos b:\root
1 dir(s) moved.
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///B:/repos/trunk
Repository UUID: 7601caab-e0e9-2f44-bdfb-7c4596ad2e37
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 03-Aug-2013 12:28:18
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc1
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 7601caab-e0e9-2f44-bdfb-7c4596ad2e37
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 03-Aug-2013 12:28:18
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/repos/trunk
Repository UUID: 7601caab-e0e9-2f44-bdfb-7c4596ad2e37
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 03-Aug-2013 12:28:20
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc2
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 7601caab-e0e9-2f44-bdfb-7c4596ad2e37
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 03-Aug-2013 12:28:20
Info: Test - switch
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: 7601caab-e0e9-2f44-bdfb-7c4596ad2e37
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 03-Aug-2013 12:28:20
Info: PYSVN CMD switch b:\wc2 file:///b:/root/repos/tags/version1
A B:/wc2/test/file2.txt
A B:/wc2/test/file3.txt
D B:/wc2/test/file1b.txt
D B:/wc2/test/file2b.txt
D B:/wc2/test/file3b.txt
U B:/wc2
U B:/wc2/test
U B:/wc2/test/file4.txt
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/tags/version1
Repository UUID: 7601caab-e0e9-2f44-bdfb-7c4596ad2e37
Revision: 12
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 03-Aug-2013 12:28:21
Info: Test - update - see above
Info: Test - Info: Testing - merge
Info: PYSVN CMD checkout file:///b:/root/repos/trunk b:\wc3
A B:/wc3/test
A B:/wc3/test/file1.txt
A B:/wc3/test/file1b.txt
A B:/wc3/test/file2b.txt
A B:/wc3/test/file3b.txt
A B:/wc3/test/file4.txt
A B:/wc3/test/file5.txt
A B:/wc3/test/folder1
A B:/wc3/test/folder1/file7.txt
A B:/wc3/test/folder1/folder2
A B:/wc3/test/folder1/folder2/file8.txt
A B:/wc3/test/folder3
U B:/wc3
update_started B:/wc3
Checked out revision 12
Info: CMD cd b:\wc3\test
Info: Create File file-merge-1.txt - test add file merge 1
Info: Create File file-merge-2.txt - test add file merge 2
Info: PYSVN CMD add file-merge-1.txt
A B:/wc3/test/file-merge-1.txt
Info: PYSVN CMD add file-merge-2.txt
A B:/wc3/test/file-merge-2.txt
Info: PYSVN CMD commit -m "add test merge files" .
A B:/wc3/test/file-merge-1.txt
A B:/wc3/test/file-merge-2.txt
Revision 13
Info: Create File msg.tmp - make a branch
Info: PYSVN CMD copy file:///b:/root/repos/trunk/test file:///b:/root/repos/trunk/test-branch
Log message
--- -------
Info: PYSVN CMD update b:\wc3
A B:/wc3/test-branch
A B:/wc3/test-branch/file-merge-1.txt
A B:/wc3/test-branch/file-merge-2.txt
A B:/wc3/test-branch/file1.txt
A B:/wc3/test-branch/file1b.txt
A B:/wc3/test-branch/file2b.txt
A B:/wc3/test-branch/file3b.txt
A B:/wc3/test-branch/file4.txt
A B:/wc3/test-branch/file5.txt
A B:/wc3/test-branch/folder1
A B:/wc3/test-branch/folder1/file7.txt
A B:/wc3/test-branch/folder1/folder2
A B:/wc3/test-branch/folder1/folder2/file8.txt
A B:/wc3/test-branch/folder3
U B:/wc3
update_started B:/wc3
Updated to revision 14
Info: Create File file-merge-3.txt - test add file merge 3
Info: PYSVN CMD add file-merge-3.txt
A B:/wc3/test/file-merge-3.txt
Info: PYSVN CMD rm file-merge-1.txt
D B:/wc3/test/file-merge-1.txt
Info: Append File file-merge-2.txt - modify merge 2
Info: PYSVN CMD commit -m "change test merge files" .
A B:/wc3/test/file-merge-3.txt
D B:/wc3/test/file-merge-1.txt
M B:/wc3/test/file-merge-2.txt
Revision 15
Info: PYSVN CMD merge --dry-run --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
A B:/wc3/test-branch/file-merge-3.txt
D B:/wc3/test-branch/file-merge-1.txt
U B:/wc3/test-branch
U B:/wc3/test-branch/file-merge-2.txt
merge_begin B:/wc3/test-branch
merge_begin B:/wc3/test-branch/file-merge-2.txt
merge_completed B:/wc3/test-branch
merge_record_info B:/wc3/test-branch
merge_record_info B:/wc3/test-branch/file-merge-2.txt
merge_record_info B:/wc3/test-branch/file-merge-3.txt
merge_record_info_begin B:/wc3/test-branch
merge_record_info_begin B:/wc3/test-branch/file-merge-2.txt
Info: PYSVN CMD merge --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
U B:/wc3/test-branch
merge_completed B:/wc3/test-branch
Info: PYSVN CMD status b:\wc3\test-branch
M B:\wc3\test-branch
D B:\wc3\test-branch\file-merge-1.txt
MM B:\wc3\test-branch\file-merge-2.txt
A + B:\wc3\test-branch\file-merge-3.txt
Info: PYSVN CMD diff b:\wc3\test-branch
Index: B:/wc3/test-branch
===================================================================
--- B:/wc3/test-branch (revision 14)
+++ B:/wc3/test-branch (working copy)
Property changes on: B:/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r15*
Index: B:/wc3/test-branch/file-merge-1.txt
===================================================================
--- B:/wc3/test-branch/file-merge-1.txt (revision 14)
+++ B:/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: B:/wc3/test-branch/file-merge-2.txt
===================================================================
--- B:/wc3/test-branch/file-merge-2.txt (revision 14)
+++ B:/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Property changes on: B:/wc3/test-branch/file-merge-2.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-2.txt:r15
Index: B:/wc3/test-branch/file-merge-3.txt
===================================================================
--- B:/wc3/test-branch/file-merge-3.txt (revision 14)
+++ B:/wc3/test-branch/file-merge-3.txt (working copy)
Property changes on: B:/wc3/test-branch/file-merge-3.txt
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test/file-merge-3.txt:r15
Info: CMD c:\python32.win32\python.exe C:\wc\svn\pysvn\Extension\Tests\test_01_set_get_tests.py b:\configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Test - end
pysvn-1.8.0/Tests/test-01.win32.known_good-py3-svn1.8.log 000644 000771 000771 00000063577 12177456426 022055 0 ustar 00barry 000000 000000 WorkDir: C:\wc\svn\pysvn\Extension
PYTHON: c:\python33.win32\python.exe
Username: barry
Info: PYSVN CMD c:\python33.win32\python.exe C:\wc\svn\pysvn\Extension\Examples\Client\svn_cmd.py --pysvn-testing 01.01.00 --config-dir b:\configdir
Info: CMD mkdir testroot-01
Info: CMD subst b: C:\wc\svn\pysvn\Extension\Tests\testroot-01
Info: CMD cd /d b:\
Info: CMD svnadmin create b:\repos
Info: Test - mkdir
Info: PYSVN CMD mkdir file:///b:/repos/trunk -m "test-01 add trunk"
Info: PYSVN CMD mkdir file:///b:/repos/trunk/test -m "test-01 add test"
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos -v -R
2 barry 0 04-Aug-2013 14:51:42 file:///B:/repos/trunk
2 barry 0 04-Aug-2013 14:51:42 file:///B:/repos/trunk/test
Info: Test - checkout
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc1
A B:/wc1/test
U B:/wc1
update_started B:/wc1
Checked out revision 2
Info: CMD dir b:\wc1 /s /b /a-h
b:\wc1\test
b:\wc1\.svn\entries
b:\wc1\.svn\format
b:\wc1\.svn\pristine
b:\wc1\.svn\tmp
b:\wc1\.svn\wc.db
Info: CMD cd /d b:\wc1\test
Info: Test - add
Info: Create File file1.txt - test add file 1
Info: Create File file2.txt - test add file 2
Info: Create File file3.txt - test add file 3
Info: Create File file4.txt - test add file 4
Info: Create File file5.txt - test add file 5
Info: CMD mkdir folder1
Info: Create File folder1\file7.txt - test add file 7
Info: CMD mkdir folder1\folder2
Info: Create File folder1\folder2\file8.txt - test add file 8
Info: CMD mkdir folder3
Info: Create File folder3\file9.txt - test add file 9
Info: CMD mkdir folder3\folder4
Info: Create File folder3\folder4\file10.txt - test add file 10
Info: PYSVN CMD add file1.txt
A B:/wc1/test/file1.txt
Info: PYSVN CMD add file2.txt
A B:/wc1/test/file2.txt
Info: PYSVN CMD add file3.txt
A B:/wc1/test/file3.txt
Info: PYSVN CMD add file4.txt
A B:/wc1/test/file4.txt
Info: PYSVN CMD add --force file5.txt
A B:/wc1/test/file5.txt
Info: PYSVN CMD add folder1
A B:/wc1/test/folder1
A B:/wc1/test/folder1/file7.txt
A B:/wc1/test/folder1/folder2
A B:/wc1/test/folder1/folder2/file8.txt
Info: PYSVN CMD add --non-recursive folder3
A B:/wc1/test/folder3
Info: PYSVN CMD checkin -m "commit added files"
A B:/wc1/test/file1.txt
A B:/wc1/test/file2.txt
A B:/wc1/test/file3.txt
A B:/wc1/test/file4.txt
A B:/wc1/test/file5.txt
A B:/wc1/test/folder1
A B:/wc1/test/folder1/file7.txt
A B:/wc1/test/folder1/folder2
A B:/wc1/test/folder1/folder2/file8.txt
A B:/wc1/test/folder3
Revision 3
Info: Test - update - get a new wc that will update
Info: PYSVN CMD checkout file:///b:/repos/trunk b:\wc2
A B:/wc2/test
A B:/wc2/test/file1.txt
A B:/wc2/test/file2.txt
A B:/wc2/test/file3.txt
A B:/wc2/test/file4.txt
A B:/wc2/test/file5.txt
A B:/wc2/test/folder1
A B:/wc2/test/folder1/file7.txt
A B:/wc2/test/folder1/folder2
A B:/wc2/test/folder1/folder2/file8.txt
A B:/wc2/test/folder3
U B:/wc2
update_started B:/wc2
Checked out revision 3
Info: Test - - checkin a mod from wc1
Info: Append File b:\wc1\test\file1.txt - line 2
Info: PYSVN CMD checkin -m "commit modified file"
M B:/wc1/test/file1.txt
Revision 4
Info: PYSVN CMD checkin -m "commit modified file"
Nothing to commit
Info: Test - update
Info: PYSVN CMD update b:\wc2
U B:/wc2
U B:/wc2/test
U B:/wc2/test/file1.txt
update_started B:/wc2
Updated to revision 4
Info: Test - the rest in lexical order
Info: Test - annotate
Info: PYSVN CMD annotate b:\wc2\test\file1.txt
A /trunk/test/file1.txt
A /trunk/test/file1.txt
0| r3 | barry | 2013-08-04T13:51:43.520205Z | test add file 1
1| r4 | barry | 2013-08-04T13:51:43.956779Z | line 2
Info: Test - cat
Info: PYSVN CMD cat -r head file:///b:/repos/trunk/test/file1.txt
test add file 1
line 2
Info: Test - cleanup
Info: Test - copy
Info: PYSVN CMD mkdir file:///b:/repos/tags -m "test-01 add tags"
Info: Create File msg.tmp - tag the trunk
Info: PYSVN CMD copy file:///b:/repos/trunk file:///b:/repos/tags/version1
Log message
--- -------
Info: PYSVN CMD ls -v file:///b:/repos/tags
6 barry 0 04-Aug-2013 14:51:44 file:///B:/repos/tags/version1
Info: PYSVN CMD copy b:\wc2\test\file1.txt b:\wc2\test\file1b.txt
A B:/wc2/test/file1b.txt
Info: PYSVN CMD propset svn:eol-style native b:\wc2\test\file1b.txt
property_added B:/wc2/test/file1b.txt
Info: PYSVN CMD checkin b:\wc2 -m "copy test"
A B:/wc2/test/file1b.txt
Revision 7
Info: Test - diff
Info: Append File b:\wc2\test\file1b.txt - new line
Info: PYSVN CMD diff b:\wc2
Index: B:/wc2/test/file1b.txt
===================================================================
--- B:/wc2/test/file1b.txt (revision 7)
+++ B:/wc2/test/file1b.txt (working copy)
@@ -1,2 +1,3 @@
test add file 1
line 2
+new line
Info: Test - export
Info: PYSVN CMD export file:///b:/repos/trunk/test b:\export1.native
A b:\export1.native
A b:\export1.native/file1.txt
A b:\export1.native/file1b.txt
A b:\export1.native/file2.txt
A b:\export1.native/file3.txt
A b:\export1.native/file4.txt
A b:\export1.native/file5.txt
A b:\export1.native/folder1
A b:\export1.native/folder1/file7.txt
A b:\export1.native/folder1/folder2
A b:\export1.native/folder1/folder2/file8.txt
A b:\export1.native/folder3
Info: PYSVN CMD export --native-eol CR file:///b:/repos/trunk/test b:\export1.cr
A b:\export1.cr
A b:\export1.cr/file1.txt
A b:\export1.cr/file1b.txt
A b:\export1.cr/file2.txt
A b:\export1.cr/file3.txt
A b:\export1.cr/file4.txt
A b:\export1.cr/file5.txt
A b:\export1.cr/folder1
A b:\export1.cr/folder1/file7.txt
A b:\export1.cr/folder1/folder2
A b:\export1.cr/folder1/folder2/file8.txt
A b:\export1.cr/folder3
Info: PYSVN CMD export --native-eol LF file:///b:/repos/trunk/test b:\export1.lf
A b:\export1.lf
A b:\export1.lf/file1.txt
A b:\export1.lf/file1b.txt
A b:\export1.lf/file2.txt
A b:\export1.lf/file3.txt
A b:\export1.lf/file4.txt
A b:\export1.lf/file5.txt
A b:\export1.lf/folder1
A b:\export1.lf/folder1/file7.txt
A b:\export1.lf/folder1/folder2
A b:\export1.lf/folder1/folder2/file8.txt
A b:\export1.lf/folder3
Info: PYSVN CMD export --native-eol CRLF file:///b:/repos/trunk/test b:\export1.crlf
A b:\export1.crlf
A b:\export1.crlf/file1.txt
A b:\export1.crlf/file1b.txt
A b:\export1.crlf/file2.txt
A b:\export1.crlf/file3.txt
A b:\export1.crlf/file4.txt
A b:\export1.crlf/file5.txt
A b:\export1.crlf/folder1
A b:\export1.crlf/folder1/file7.txt
A b:\export1.crlf/folder1/folder2
A b:\export1.crlf/folder1/folder2/file8.txt
A b:\export1.crlf/folder3
Info: CMD dir /s /b b:\export1.native
b:\export1.native\file1.txt
b:\export1.native\file1b.txt
b:\export1.native\file2.txt
b:\export1.native\file3.txt
b:\export1.native\file4.txt
b:\export1.native\file5.txt
b:\export1.native\folder1
b:\export1.native\folder3
b:\export1.native\folder1\file7.txt
b:\export1.native\folder1\folder2
b:\export1.native\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.cr
b:\export1.cr\file1.txt
b:\export1.cr\file1b.txt
b:\export1.cr\file2.txt
b:\export1.cr\file3.txt
b:\export1.cr\file4.txt
b:\export1.cr\file5.txt
b:\export1.cr\folder1
b:\export1.cr\folder3
b:\export1.cr\folder1\file7.txt
b:\export1.cr\folder1\folder2
b:\export1.cr\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.lf
b:\export1.lf\file1.txt
b:\export1.lf\file1b.txt
b:\export1.lf\file2.txt
b:\export1.lf\file3.txt
b:\export1.lf\file4.txt
b:\export1.lf\file5.txt
b:\export1.lf\folder1
b:\export1.lf\folder3
b:\export1.lf\folder1\file7.txt
b:\export1.lf\folder1\folder2
b:\export1.lf\folder1\folder2\file8.txt
Info: CMD dir /s /b b:\export1.crlf
b:\export1.crlf\file1.txt
b:\export1.crlf\file1b.txt
b:\export1.crlf\file2.txt
b:\export1.crlf\file3.txt
b:\export1.crlf\file4.txt
b:\export1.crlf\file5.txt
b:\export1.crlf\folder1
b:\export1.crlf\folder3
b:\export1.crlf\folder1\file7.txt
b:\export1.crlf\folder1\folder2
b:\export1.crlf\folder1\folder2\file8.txt
Info: Test - import
Info: Test - info
Info: PYSVN CMD info b:\wc2\test
Path: b:\wc2\test
Name: .
Url: file:///B:/repos/trunk/test
Repository UUID: e45bbff4-655a-0e43-b6ae-c03f587fa629
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 04-Aug-2013 14:51:43
Info: PYSVN CMD info b:\wc2\test\file1.txt
Path: b:\wc2\test\file1.txt
Name: file1.txt
Url: file:///B:/repos/trunk/test/file1.txt
Repository UUID: e45bbff4-655a-0e43-b6ae-c03f587fa629
Revision: 4
Node kind: file
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 04-Aug-2013 14:51:43
Text Last Updated: 04-Aug-2013 14:51:44
Checksum: cb0b37e264ebcc467e9f37a069e034d7
Info: Test - log
Info: PYSVN CMD log b:\wc2
------------------------------------------------------------
rev 7: barry | 04-Aug-2013 14:51:45 | 1 lines
copy test
------------------------------------------------------------
rev 4: barry | 04-Aug-2013 14:51:43 | 1 lines
commit modified file
------------------------------------------------------------
rev 3: barry | 04-Aug-2013 14:51:43 | 1 lines
commit added files
------------------------------------------------------------
rev 2: barry | 04-Aug-2013 14:51:42 | 1 lines
test-01 add test
------------------------------------------------------------
rev 1: barry | 04-Aug-2013 14:51:42 | 1 lines
test-01 add trunk
------------------------------------------------------------
Info: Test - ls
Info: PYSVN CMD ls file:///b:/repos/trunk/test
file:///B:/repos/trunk/test/file1.txt
file:///B:/repos/trunk/test/file1b.txt
file:///B:/repos/trunk/test/file2.txt
file:///B:/repos/trunk/test/file3.txt
file:///B:/repos/trunk/test/file4.txt
file:///B:/repos/trunk/test/file5.txt
file:///B:/repos/trunk/test/folder1
file:///B:/repos/trunk/test/folder3
Info: PYSVN CMD ls -v file:///b:/repos/trunk/test
4 barry 25 04-Aug-2013 14:51:43 file:///B:/repos/trunk/test/file1.txt
7 barry 23 04-Aug-2013 14:51:45 file:///B:/repos/trunk/test/file1b.txt
3 barry 17 04-Aug-2013 14:51:43 file:///B:/repos/trunk/test/file2.txt
3 barry 17 04-Aug-2013 14:51:43 file:///B:/repos/trunk/test/file3.txt
3 barry 17 04-Aug-2013 14:51:43 file:///B:/repos/trunk/test/file4.txt
3 barry 17 04-Aug-2013 14:51:43 file:///B:/repos/trunk/test/file5.txt
3 barry 0 04-Aug-2013 14:51:43 file:///B:/repos/trunk/test/folder1
3 barry 0 04-Aug-2013 14:51:43 file:///B:/repos/trunk/test/folder3
Info: PYSVN CMD ls b:\wc2\test
B:/wc2/test/file1.txt
B:/wc2/test/file1b.txt
B:/wc2/test/file2.txt
B:/wc2/test/file3.txt
B:/wc2/test/file4.txt
B:/wc2/test/file5.txt
B:/wc2/test/folder1
B:/wc2/test/folder3
Info: PYSVN CMD ls -v b:\wc2\test
4 barry 25 04-Aug-2013 14:51:43 B:/wc2/test/file1.txt
7 barry 23 04-Aug-2013 14:51:45 B:/wc2/test/file1b.txt
3 barry 17 04-Aug-2013 14:51:43 B:/wc2/test/file2.txt
3 barry 17 04-Aug-2013 14:51:43 B:/wc2/test/file3.txt
3 barry 17 04-Aug-2013 14:51:43 B:/wc2/test/file4.txt
3 barry 17 04-Aug-2013 14:51:43 B:/wc2/test/file5.txt
3 barry 0 04-Aug-2013 14:51:43 B:/wc2/test/folder1
3 barry 0 04-Aug-2013 14:51:43 B:/wc2/test/folder3
Info: Test - merge - see below
Info: Test - mkdir - done above
Info: Test - move
Info: Create File msg.tmp - move url test
Info: PYSVN CMD move file:///b:/repos/trunk/test/file2.txt file:///b:/repos/trunk/test/file2b.txt
Log message
--- -------
Info: PYSVN CMD move b:\wc2\test\file3.txt b:\wc2\test\file3b.txt
A B:/wc2/test/file3b.txt
D B:/wc2/test/file3.txt
Info: PYSVN CMD checkin b:\wc2 -m "move wc test"
A B:/wc2/test/file3b.txt
D B:/wc2/test/file3.txt
M B:/wc2/test/file1b.txt
Revision 9
Info: Test - status
Info: Append File b:\wc1\test\file4.txt - file 4 is changing
Info: PYSVN CMD checkin b:\wc1 -m "change wc1 for status -u to detect"
M B:/wc1/test/file4.txt
Revision 10
Info: PYSVN CMD status b:\wc2
Info: PYSVN CMD status --verbose b:\wc2
4 4 barry B:\wc2
4 4 barry B:\wc2\test
4 4 barry B:\wc2\test\file1.txt
9 9 barry B:\wc2\test\file1b.txt
4 3 barry B:\wc2\test\file2.txt
9 9 barry B:\wc2\test\file3b.txt
4 3 barry B:\wc2\test\file4.txt
4 3 barry B:\wc2\test\file5.txt
4 3 barry B:\wc2\test\folder1
4 3 barry B:\wc2\test\folder1\file7.txt
4 3 barry B:\wc2\test\folder1\folder2
4 3 barry B:\wc2\test\folder1\folder2\file8.txt
4 3 barry B:\wc2\test\folder3
Info: PYSVN CMD status --show-updates b:\wc2
M B:\wc2\test
D B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
M B:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry B:\wc2
M 4 4 barry B:\wc2\test
4 4 barry B:\wc2\test\file1.txt
9 9 barry B:\wc2\test\file1b.txt
D 4 3 barry B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
9 9 barry B:\wc2\test\file3b.txt
M 4 3 barry B:\wc2\test\file4.txt
4 3 barry B:\wc2\test\file5.txt
4 3 barry B:\wc2\test\folder1
4 3 barry B:\wc2\test\folder1\file7.txt
4 3 barry B:\wc2\test\folder1\folder2
4 3 barry B:\wc2\test\folder1\folder2\file8.txt
4 3 barry B:\wc2\test\folder3
Info: PYSVN CMD update
A B:/wc1/test/file1b.txt
A B:/wc1/test/file2b.txt
A B:/wc1/test/file3b.txt
D B:/wc1/test/file2.txt
D B:/wc1/test/file3.txt
U B:/wc1
U B:/wc1/test
update_started B:/wc1/test
Updated to revision 10
Info: PYSVN CMD status --show-updates b:\wc2
M B:\wc2\test
D B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
M B:\wc2\test\file4.txt
Info: PYSVN CMD status --show-updates --verbose b:\wc2
4 4 barry B:\wc2
M 4 4 barry B:\wc2\test
4 4 barry B:\wc2\test\file1.txt
9 9 barry B:\wc2\test\file1b.txt
D 4 3 barry B:\wc2\test\file2.txt
A B:\wc2\test\file2b.txt
9 9 barry B:\wc2\test\file3b.txt
M 4 3 barry B:\wc2\test\file4.txt
4 3 barry B:\wc2\test\file5.txt
4 3 barry B:\wc2\test\folder1
4 3 barry B:\wc2\test\folder1\file7.txt
4 3 barry B:\wc2\test\folder1\folder2
4 3 barry B:\wc2\test\folder1\folder2\file8.txt
4 3 barry B:\wc2\test\folder3
Info: PYSVN CMD checkin b:\wc2 -m "prop change"
Nothing to commit
Info: Test - propdel
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD propset test:prop1 del_me file4.txt
property_added B:/wc2/test/file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
test:prop1: del_me
Info: PYSVN CMD propdel test:prop1 file4.txt
property_deleted B:/wc2/test/file4.txt
Info: PYSVN CMD proplist -v file4.txt
Info: Test - propget
Info: PYSVN CMD propget svn:eol-style file4.txt
Info: Test - proplist - see above
Info: Test - propset
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD proplist -v file4.txt
Info: PYSVN CMD propset svn:eol-style native file4.txt
property_added B:/wc2/test/file4.txt
Info: PYSVN CMD proplist -v file4.txt
Properties on 'file4.txt':
svn:eol-style: native
Info: Test - remove
Info: CMD cd /d b:\wc2\test
Info: PYSVN CMD remove file5.txt
D B:/wc2/test/file5.txt
Info: PYSVN CMD status
MM file4.txt
D file5.txt
Info: Test - resolved
Info: Append File b:\wc1\test\file4.txt - conflict in file4 yes
Info: Append File b:\wc2\test\file4.txt - conflict in file4 no
Info: PYSVN CMD checkin b:\wc1\test -m "make a conflict part 1"
M B:/wc1/test/file4.txt
Revision 11
Info: PYSVN CMD update b:\wc2\test
callback_conflict_resolver
action:
base_file: B:\wc2\test\file4.txt.r4
is_binary: False
kind:
merged_file: B:\wc2\test\file4.txt
mime_type: None
my_file: B:\wc2\test\file4.txt.mine
node_kind:
operation:
path: B:/wc2/test/file4.txt
property_name: None
reason:
src_left_version: {'node_kind': , 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': , 'repos_url': 'file:///B:/repos'}
src_right_version: {'node_kind': , 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': , 'repos_url': 'file:///B:/repos'}
their_file: B:\wc2\test\file4.txt.r11
A B:/wc2/test/file2b.txt
D B:/wc2/test/file2.txt
U B:/wc2
U B:/wc2/test
U B:/wc2/test/file4.txt
conflict_resolver_done B:/wc2/test/file4.txt
conflict_resolver_starting B:/wc2/test/file4.txt
update_started B:/wc2/test
Updated to revision 11
Info: PYSVN CMD status
CM file4.txt
? file4.txt.mine
? file4.txt.r11
? file4.txt.r4
D file5.txt
Info: CMD copy b:\wc2\test\file4.txt.mine b:\wc2\test\file4.txt
1 file(s) copied.
Info: PYSVN CMD resolved b:\wc2\test\file4.txt
R B:/wc2/test/file4.txt
conflict_resolver_done B:/wc2/test/file4.txt
conflict_resolver_starting B:/wc2/test/file4.txt
Info: PYSVN CMD checkin b:\wc2\test\file4.txt -m "resolve a confict part 2"
M B:/wc2/test/file4.txt
Revision 12
Info: Test - revert
Info: PYSVN CMD revert file5.txt
R B:/wc2/test/file5.txt
Info: PYSVN CMD status
Info: Test - revproplist
Info: PYSVN CMD revproplist file:///b:/repos/trunk
Revision: 12
svn:author: barry
svn:date: 2013-08-04T13:51:49.491903Z
svn:log: resolve a confict part 2
Info: Test - revpropget
Info: PYSVN CMD revpropget svn:log file:///b:/repos/trunk
Revision: 12
svn:log: resolve a confict part 2
Info: PYSVN CMD revpropget no_such_prop file:///b:/repos/trunk
Revision: 12
no_such_prop: None
Info: Test - revpropset
Info: PYSVN CMD revpropset svn:log "Hello world" file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - revpropdel
Info: PYSVN CMD revpropdel svn:log file:///b:/repos/trunk
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
Info: Test - status - see above
Info: Test - relocate
Info: CMD mkdir b:\root
Info: CMD move b:\repos b:\root
1 dir(s) moved.
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///B:/repos/trunk
Repository UUID: e45bbff4-655a-0e43-b6ae-c03f587fa629
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 04-Aug-2013 14:51:42
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc1
Info: PYSVN CMD info b:\wc1
Path: b:\wc1
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: e45bbff4-655a-0e43-b6ae-c03f587fa629
Revision: 2
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 2
Last Changed Date: 04-Aug-2013 14:51:42
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/repos/trunk
Repository UUID: e45bbff4-655a-0e43-b6ae-c03f587fa629
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 04-Aug-2013 14:51:43
Info: PYSVN CMD relocate file:///b:/repos/trunk file:///b:/root/repos/trunk b:\wc2
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: e45bbff4-655a-0e43-b6ae-c03f587fa629
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 04-Aug-2013 14:51:43
Info: Test - switch
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/trunk
Repository UUID: e45bbff4-655a-0e43-b6ae-c03f587fa629
Revision: 4
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 4
Last Changed Date: 04-Aug-2013 14:51:43
Info: PYSVN CMD switch b:\wc2 file:///b:/root/repos/tags/version1
A B:/wc2/test/file2.txt
A B:/wc2/test/file3.txt
D B:/wc2/test/file1b.txt
D B:/wc2/test/file2b.txt
D B:/wc2/test/file3b.txt
U B:/wc2
U B:/wc2/test
U B:/wc2/test/file4.txt
Info: PYSVN CMD info b:\wc2
Path: b:\wc2
Name: .
Url: file:///B:/root/repos/tags/version1
Repository UUID: e45bbff4-655a-0e43-b6ae-c03f587fa629
Revision: 12
Node kind: directory
Schedule: normal
Last Changed Author: barry
Last Changed Rev: 6
Last Changed Date: 04-Aug-2013 14:51:44
Info: Test - update - see above
Info: Test - Info: Testing - merge
Info: PYSVN CMD checkout file:///b:/root/repos/trunk b:\wc3
A B:/wc3/test
A B:/wc3/test/file1.txt
A B:/wc3/test/file1b.txt
A B:/wc3/test/file2b.txt
A B:/wc3/test/file3b.txt
A B:/wc3/test/file4.txt
A B:/wc3/test/file5.txt
A B:/wc3/test/folder1
A B:/wc3/test/folder1/file7.txt
A B:/wc3/test/folder1/folder2
A B:/wc3/test/folder1/folder2/file8.txt
A B:/wc3/test/folder3
U B:/wc3
update_started B:/wc3
Checked out revision 12
Info: CMD cd b:\wc3\test
Info: Create File file-merge-1.txt - test add file merge 1
Info: Create File file-merge-2.txt - test add file merge 2
Info: PYSVN CMD add file-merge-1.txt
A B:/wc3/test/file-merge-1.txt
Info: PYSVN CMD add file-merge-2.txt
A B:/wc3/test/file-merge-2.txt
Info: PYSVN CMD commit -m "add test merge files" .
A B:/wc3/test/file-merge-1.txt
A B:/wc3/test/file-merge-2.txt
Revision 13
Info: Create File msg.tmp - make a branch
Info: PYSVN CMD copy file:///b:/root/repos/trunk/test file:///b:/root/repos/trunk/test-branch
Log message
--- -------
Info: PYSVN CMD update b:\wc3
A B:/wc3/test-branch
A B:/wc3/test-branch/file-merge-1.txt
A B:/wc3/test-branch/file-merge-2.txt
A B:/wc3/test-branch/file1.txt
A B:/wc3/test-branch/file1b.txt
A B:/wc3/test-branch/file2b.txt
A B:/wc3/test-branch/file3b.txt
A B:/wc3/test-branch/file4.txt
A B:/wc3/test-branch/file5.txt
A B:/wc3/test-branch/folder1
A B:/wc3/test-branch/folder1/file7.txt
A B:/wc3/test-branch/folder1/folder2
A B:/wc3/test-branch/folder1/folder2/file8.txt
A B:/wc3/test-branch/folder3
U B:/wc3
update_started B:/wc3
Updated to revision 14
Info: Create File file-merge-3.txt - test add file merge 3
Info: PYSVN CMD add file-merge-3.txt
A B:/wc3/test/file-merge-3.txt
Info: PYSVN CMD rm file-merge-1.txt
D B:/wc3/test/file-merge-1.txt
Info: Append File file-merge-2.txt - modify merge 2
Info: PYSVN CMD commit -m "change test merge files" .
A B:/wc3/test/file-merge-3.txt
D B:/wc3/test/file-merge-1.txt
M B:/wc3/test/file-merge-2.txt
Revision 15
Info: PYSVN CMD merge --dry-run --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
A B:/wc3/test-branch/file-merge-3.txt
D B:/wc3/test-branch/file-merge-1.txt
U B:/wc3/test-branch/file-merge-2.txt
U B:/wc3/test-branch/file-merge-2.txt
merge_begin B:/wc3/test-branch
merge_completed B:/wc3/test-branch
merge_elide_info B:/wc3/test-branch/file-merge-2.txt
merge_record_info B:/wc3/test-branch
merge_record_info B:/wc3/test-branch/file-merge-2.txt
merge_record_info_begin B:/wc3/test-branch
merge_record_info_begin B:/wc3/test-branch/file-merge-2.txt
Info: PYSVN CMD merge --revision 14:15 file:///b:/root/repos/trunk/test b:\wc3\test-branch
merge_completed B:/wc3/test-branch
Info: PYSVN CMD status b:\wc3\test-branch
M B:\wc3\test-branch
D B:\wc3\test-branch\file-merge-1.txt
M B:\wc3\test-branch\file-merge-2.txt
A + B:\wc3\test-branch\file-merge-3.txt
Info: PYSVN CMD diff b:\wc3\test-branch
Index: B:/wc3/test-branch/file-merge-1.txt
===================================================================
--- B:/wc3/test-branch/file-merge-1.txt (revision 14)
+++ B:/wc3/test-branch/file-merge-1.txt (working copy)
@@ -1 +0,0 @@
-test add file merge 1
Index: B:/wc3/test-branch/file-merge-2.txt
===================================================================
--- B:/wc3/test-branch/file-merge-2.txt (revision 14)
+++ B:/wc3/test-branch/file-merge-2.txt (working copy)
@@ -1 +1,2 @@
test add file merge 2
+modify merge 2
Index: B:/wc3/test-branch
===================================================================
--- B:/wc3/test-branch (revision 14)
+++ B:/wc3/test-branch (working copy)
Property changes on: B:/wc3/test-branch
___________________________________________________________________
Added: svn:mergeinfo
Merged /trunk/test:r15
Info: CMD c:\python33.win32\python.exe C:\wc\svn\pysvn\Extension\Tests\test_01_set_get_tests.py b:\configdir
Info: Initial values
Info: get_auth_cache() => 1
Info: get_auto_props() => 0
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Change values 1
Info: Changed values 1
Info: get_auth_cache() => 0
Info: get_auto_props() => 0
Info: get_default_password() => 'thepass'
Info: get_default_username() => 'auser'
Info: get_interactive() => 0
Info: get_store_passwords() => 0
Info: Change values 2
Info: Changed values 2
Info: get_auth_cache() => 1
Info: get_auto_props() => 1
Info: get_default_password() => None
Info: get_default_username() => None
Info: get_interactive() => 1
Info: get_store_passwords() => 1
Info: Test - end
pysvn-1.8.0/Tests/test-02.cmd 000644 000771 000771 00000000305 12573331527 015136 0 ustar 00barry 000000 000000 setlocal
set PYTHONPATH=.
if exist testroot rmdir /s /q testroot
mkdir testroot
%PYTHON% %BUILDER_TOP_DIR%\Tests\thread_tests.py 20 http://torment.chelsea.private/svn/repos1/Latest/
endlocal
pysvn-1.8.0/Tests/test-03.cmd 000644 000771 000771 00000000357 12573331527 015146 0 ustar 00barry 000000 000000 @prompt $P$S$G
@echo WorkDir: %BUILDER_TOP_DIR%
@echo PYTHON: %PYTHON%
@echo Username: %USERNAME%
setlocal
mkdir testroot-03
subst b: %CD%\testroot-03
mkdir b:\configdir
cd testroot-03
%PYTHON% ..\test_callbacks.py
endlocal
pysvn-1.8.0/Tests/test-03.sh 000755 000771 000771 00000000521 11076210000 014764 0 ustar 00barry 000000 000000 #!/bin/sh
# need to get rid of any symbolic links in the WORKDIR
export WORKDIR=$( ${PYTHON} -c 'import os;os.chdir("..");print( os.getcwd() )' )
cd ${WORKDIR}/Tests
echo WorkDir: ${WORKDIR}
echo PYTHON: ${PYTHON}
mkdir -p testroot-03
rm -rf testroot-03
mkdir testroot-03
cd testroot-03
mkdir configdir
${PYTHON} ../test_callbacks.py
pysvn-1.8.0/Tests/test-03.unix.known_good-py2-svn1.4.log 000644 000771 000771 00000001411 11253135715 022033 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/bin/python2.3
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Traceback (most recent call last):
File "../test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Traceback (most recent call last):
File "../test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: passed
Info: Expecting error None
Info: Passed 4
pysvn-1.8.0/Tests/test-03.unix.known_good-py2-svn1.5.log 000644 000771 000771 00000001411 11253135715 022034 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/bin/python2.3
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Traceback (most recent call last):
File "../test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Traceback (most recent call last):
File "../test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: passed
Info: Expecting error None
Info: Passed 4
pysvn-1.8.0/Tests/test-03.unix.known_good-py2-svn1.6.log 000644 000771 000771 00000001411 11253135715 022035 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/bin/python2.3
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Traceback (most recent call last):
File "../test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Traceback (most recent call last):
File "../test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: passed
Info: Expecting error None
Info: Passed 4
pysvn-1.8.0/Tests/test-03.unix.known_good-py2-svn1.7.log 000644 000771 000771 00000001411 11603642311 022030 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/bin/python2.3
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Traceback (most recent call last):
File "../test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Traceback (most recent call last):
File "../test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: passed
Info: Expecting error None
Info: Passed 4
pysvn-1.8.0/Tests/test-03.unix.known_good-py2-svn1.8.log 000644 000771 000771 00000001411 12164247515 022043 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/bin/python2.3
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Traceback (most recent call last):
File "../test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Traceback (most recent call last):
File "../test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: passed
Info: Expecting error None
Info: Passed 4
pysvn-1.8.0/Tests/test-03.unix.known_good-py2-svn1.9.log 000644 000771 000771 00000001411 12564665666 022063 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/bin/python2.3
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Traceback (most recent call last):
File "../test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Traceback (most recent call last):
File "../test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: passed
Info: Expecting error None
Info: Passed 4
pysvn-1.8.0/Tests/test-03.unix.known_good-py3-svn1.5.log 000644 000771 000771 00000001411 11255417030 022030 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/bin/python2.3
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Traceback (most recent call last):
File "../test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Traceback (most recent call last):
File "../test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: passed
Info: Expecting error None
Info: Passed 4
pysvn-1.8.0/Tests/test-03.unix.known_good-py3-svn1.6.log 000644 000771 000771 00000001411 11253135715 022036 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/bin/python2.3
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Traceback (most recent call last):
File "../test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Traceback (most recent call last):
File "../test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: passed
Info: Expecting error None
Info: Passed 4
pysvn-1.8.0/Tests/test-03.unix.known_good-py3-svn1.7.log 000644 000771 000771 00000001411 11646632567 022054 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/bin/python2.3
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Traceback (most recent call last):
File "../test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Traceback (most recent call last):
File "../test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: passed
Info: Expecting error None
Info: Passed 4
pysvn-1.8.0/Tests/test-03.unix.known_good-py3-svn1.8.log 000644 000771 000771 00000001411 12164247515 022044 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/bin/python2.3
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Traceback (most recent call last):
File "../test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Traceback (most recent call last):
File "../test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: passed
Info: Expecting error None
Info: Passed 4
pysvn-1.8.0/Tests/test-03.unix.known_good-py3-svn1.9.log 000644 000771 000771 00000001411 12564665666 022064 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /usr/bin/python2.3
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Traceback (most recent call last):
File "../test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Traceback (most recent call last):
File "../test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: passed
Info: Expecting error None
Info: Passed 4
pysvn-1.8.0/Tests/test-03.win32.known_good-py2-svn1.4.log 000644 000771 000771 00000002440 11253135715 022015 0 ustar 00barry 000000 000000 WorkDir: L:\wc\pysvn\trunk\pysvn\Extension
PYTHON: c:\python23\python.exe
L:\wc\pysvn\trunk\pysvn\Extension\Tests >setlocal
L:\wc\pysvn\trunk\pysvn\Extension\Tests >mkdir testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests >subst b: L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests >mkdir b:\configdir
L:\wc\pysvn\trunk\pysvn\Extension\Tests >cd testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03 >c:\python23\python.exe ..\test_callbacks.py
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Info: passed
Info: Expecting error None
Info: Passed 4
Traceback (most recent call last):
File "..\test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Traceback (most recent call last):
File "..\test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03 >endlocal
pysvn-1.8.0/Tests/test-03.win32.known_good-py2-svn1.5.log 000644 000771 000771 00000002461 11253135715 022021 0 ustar 00barry 000000 000000 WorkDir: L:\wc\pysvn\trunk\pysvn\Extension
PYTHON: c:\python23\python.exe
Username: barry
L:\wc\pysvn\trunk\pysvn\Extension\Tests >setlocal
L:\wc\pysvn\trunk\pysvn\Extension\Tests >mkdir testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests >subst b: L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests >mkdir b:\configdir
L:\wc\pysvn\trunk\pysvn\Extension\Tests >cd testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03 >c:\python23\python.exe ..\test_callbacks.py
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Info: passed
Info: Expecting error None
Info: Passed 4
Traceback (most recent call last):
File "..\test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Traceback (most recent call last):
File "..\test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03 >endlocal
pysvn-1.8.0/Tests/test-03.win32.known_good-py2-svn1.6.log 000644 000771 000771 00000002461 11253135715 022022 0 ustar 00barry 000000 000000 WorkDir: L:\wc\pysvn\trunk\pysvn\Extension
PYTHON: c:\python23\python.exe
Username: barry
L:\wc\pysvn\trunk\pysvn\Extension\Tests >setlocal
L:\wc\pysvn\trunk\pysvn\Extension\Tests >mkdir testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests >subst b: L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests >mkdir b:\configdir
L:\wc\pysvn\trunk\pysvn\Extension\Tests >cd testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03 >c:\python23\python.exe ..\test_callbacks.py
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Info: passed
Info: Expecting error None
Info: Passed 4
Traceback (most recent call last):
File "..\test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Traceback (most recent call last):
File "..\test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03 >endlocal
pysvn-1.8.0/Tests/test-03.win32.known_good-py2-svn1.7.log 000644 000771 000771 00000002461 11653316763 022033 0 ustar 00barry 000000 000000 WorkDir: L:\wc\pysvn\trunk\pysvn\Extension
PYTHON: c:\python23\python.exe
Username: barry
L:\wc\pysvn\trunk\pysvn\Extension\Tests >setlocal
L:\wc\pysvn\trunk\pysvn\Extension\Tests >mkdir testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests >subst b: L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests >mkdir b:\configdir
L:\wc\pysvn\trunk\pysvn\Extension\Tests >cd testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03 >c:\python23\python.exe ..\test_callbacks.py
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Info: passed
Info: Expecting error None
Info: Passed 4
Traceback (most recent call last):
File "..\test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Traceback (most recent call last):
File "..\test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03 >endlocal
pysvn-1.8.0/Tests/test-03.win32.known_good-py2-svn1.8.log 000644 000771 000771 00000002461 12164247515 022030 0 ustar 00barry 000000 000000 WorkDir: L:\wc\pysvn\trunk\pysvn\Extension
PYTHON: c:\python23\python.exe
Username: barry
L:\wc\pysvn\trunk\pysvn\Extension\Tests >setlocal
L:\wc\pysvn\trunk\pysvn\Extension\Tests >mkdir testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests >subst b: L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests >mkdir b:\configdir
L:\wc\pysvn\trunk\pysvn\Extension\Tests >cd testroot-03
L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03 >c:\python23\python.exe ..\test_callbacks.py
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Info: passed
Info: Expecting error None
Info: Passed 4
Traceback (most recent call last):
File "..\test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Traceback (most recent call last):
File "..\test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
L:\wc\pysvn\trunk\pysvn\Extension\Tests\testroot-03 >endlocal
pysvn-1.8.0/Tests/test-03.win32.known_good-py3-svn1.5.log 000644 000771 000771 00000002602 11255444226 022021 0 ustar 00barry 000000 000000 WorkDir: C:\BuildRoot\Win32-MSVC90-1.5.6\pysvn\py31
PYTHON: c:\python31\python.exe
Username: barry
C:\BuildRoot\Win32-MSVC90-1.5.6\pysvn\py31\Tests >setlocal
C:\BuildRoot\Win32-MSVC90-1.5.6\pysvn\py31\Tests >mkdir testroot-03
C:\BuildRoot\Win32-MSVC90-1.5.6\pysvn\py31\Tests >subst b: C:\BuildRoot\Win32-MSVC90-1.5.6\pysvn\py31\Tests\testroot-03
C:\BuildRoot\Win32-MSVC90-1.5.6\pysvn\py31\Tests >mkdir b:\configdir
C:\BuildRoot\Win32-MSVC90-1.5.6\pysvn\py31\Tests >cd testroot-03
C:\BuildRoot\Win32-MSVC90-1.5.6\pysvn\py31\Tests\testroot-03 >c:\python31\python.exe ..\test_callbacks.py
Traceback (most recent call last):
File "..\test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Traceback (most recent call last):
File "..\test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Info: passed
Info: Expecting error None
Info: Passed 4
C:\BuildRoot\Win32-MSVC90-1.5.6\pysvn\py31\Tests\testroot-03 >endlocal
pysvn-1.8.0/Tests/test-03.win32.known_good-py3-svn1.6.log 000644 000771 000771 00000002602 11255110531 022007 0 ustar 00barry 000000 000000 WorkDir: C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31
PYTHON: c:\python31\python.exe
Username: barry
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >setlocal
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >mkdir testroot-03
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >subst b: C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests\testroot-03
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >mkdir b:\configdir
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >cd testroot-03
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests\testroot-03 >c:\python31\python.exe ..\test_callbacks.py
Traceback (most recent call last):
File "..\test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Traceback (most recent call last):
File "..\test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Info: passed
Info: Expecting error None
Info: Passed 4
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests\testroot-03 >endlocal
pysvn-1.8.0/Tests/test-03.win32.known_good-py3-svn1.7.log 000644 000771 000771 00000002602 11646632567 022036 0 ustar 00barry 000000 000000 WorkDir: C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31
PYTHON: c:\python31\python.exe
Username: barry
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >setlocal
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >mkdir testroot-03
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >subst b: C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests\testroot-03
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >mkdir b:\configdir
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >cd testroot-03
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests\testroot-03 >c:\python31\python.exe ..\test_callbacks.py
Traceback (most recent call last):
File "..\test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Traceback (most recent call last):
File "..\test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Info: passed
Info: Expecting error None
Info: Passed 4
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests\testroot-03 >endlocal
pysvn-1.8.0/Tests/test-03.win32.known_good-py3-svn1.8.log 000644 000771 000771 00000002602 12164247515 022026 0 ustar 00barry 000000 000000 WorkDir: C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31
PYTHON: c:\python31\python.exe
Username: barry
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >setlocal
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >mkdir testroot-03
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >subst b: C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests\testroot-03
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >mkdir b:\configdir
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests >cd testroot-03
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests\testroot-03 >c:\python31\python.exe ..\test_callbacks.py
Traceback (most recent call last):
File "..\test_callbacks.py", line 79, in get_login_bad
return retcode, username, password, save
NameError: global name 'retcode' is not defined
Traceback (most recent call last):
File "..\test_callbacks.py", line 86, in get_log_message_bad
return bad_var
NameError: global name 'bad_var' is not defined
Info: Client created
Info: Expecting error callback_get_login required
Info: passed
Info: Expecting error unhandled exception in callback_get_login
Info: passed
Info: Expecting error callback_get_log_message required
Info: passed
Info: Expecting error unhandled exception in callback_get_log_message
Info: passed
Info: Expecting error None
Info: Passed 4
C:\BuildRoot\Win32-MSVC90-1.6.5\pysvn\py31\Tests\testroot-03 >endlocal
pysvn-1.8.0/Tests/test-04.cmd 000644 000771 000771 00000006277 12573331527 015156 0 ustar 00barry 000000 000000 @prompt $P$S$G$S
@echo WorkDir: %BUILDER_TOP_DIR%
@echo PYTHON: %PYTHON%
@echo Username: %USERNAME%
setlocal
set PYTHONPATH=%BUILDER_TOP_DIR%\Source;%BUILDER_TOP_DIR%\Examples\Client
set PYSVN=%PYTHON% %BUILDER_TOP_DIR%\Examples\Client\svn_cmd.py --pysvn-testing 01.02.01 --config-dir b:\configdir
mkdir testroot-04
subst b: %CD%\testroot-04
cd /d B:\
svnadmin create b:\repos
rem mkdir
%PYSVN% mkdir file:///b:/repos/trunk -m "test-01 add trunk"
%PYSVN% mkdir file:///b:/repos/trunk/test -m "test-01 add test"
rem Install hooks
echo echo %PYTHON% %BUILDER_TOP_DIR%\Tests\test_04_commit_hook_test_1.py pre-commit %%* ^>b:\pre_test_1.output >>b:\repos\hooks\pre-commit.cmd
echo set PYTHONPATH=%PYTHONPATH% >>b:\repos\hooks\pre-commit.cmd
echo %PYTHON% %BUILDER_TOP_DIR%\Tests\test_04_commit_hook_test_1.py pre-commit %%* ^>^>b:\pre_test_1.output >>b:\repos\hooks\pre-commit.cmd
echo echo %PYTHON% %BUILDER_TOP_DIR%\Tests\test_04_commit_hook_test_1.py post-commit %%* is_revision ^>b:\post_test_1.output >>b:\repos\hooks\post-commit.cmd
echo set PYTHONPATH=%PYTHONPATH% >>b:\repos\hooks\post-commit.cmd
echo %PYTHON% %BUILDER_TOP_DIR%\Tests\test_04_commit_hook_test_1.py post-commit %%* is_revision ^>^>b:\post_test_1.output >>b:\repos\hooks\post-commit.cmd
rem Add one dir
%PYSVN% mkdir file:///b:/repos/trunk/test/a -m "pre-commit test 1"
rem pre_test_1.output start ----------------------------------------
type b:\pre_test_1.output
rem pre_test_1.output end ------------------------------------------
rem post_test_1.output start ----------------------------------------
type b:\post_test_1.output
rem post_test_1.output end ------------------------------------------
rem Add two files
%PYSVN% co file:///b:/repos/trunk/test b:\wc
echo file1 ROOT >b:\wc\file1.txt
echo file1 A >b:\wc\a\file1.txt
%PYSVN% add b:\wc\file1.txt
%PYSVN% add b:\wc\a\file1.txt
%PYSVN% checkin -m "Add two files" b:\wc
rem pre_test_1.output start ----------------------------------------
type b:\pre_test_1.output
rem pre_test_1.output end ------------------------------------------
rem post_test_1.output start ----------------------------------------
type b:\post_test_1.output
rem post_test_1.output end ------------------------------------------
rem Mod one file Mod one prop
echo file1 ROOT ln 2 >b:\wc\file1.txt
%PYSVN% propset svn:eol-style native b:\wc\a\file1.txt
%PYSVN% checkin -m "Mod one file Mod one prop" b:\wc
rem pre_test_1.output start ----------------------------------------
type b:\pre_test_1.output
rem pre_test_1.output end ------------------------------------------
rem post_test_1.output start ----------------------------------------
type b:\post_test_1.output
rem post_test_1.output end ------------------------------------------
rem Delete one file
%PYSVN% rm b:\wc\a\file1.txt
%PYSVN% checkin -m "Delete one file" b:\wc
rem pre_test_1.output start ----------------------------------------
type b:\pre_test_1.output
rem pre_test_1.output end ------------------------------------------
rem post_test_1.output start ----------------------------------------
type b:\post_test_1.output
rem post_test_1.output end ------------------------------------------
endlocal
pysvn-1.8.0/Tests/test-04.sh 000755 000771 000771 00000011300 12164244243 015001 0 ustar 00barry 000000 000000 #!/bin/sh
# need to get rid of any symbolic links in the WORKDIR
export WORKDIR=$( ${PYTHON} -c 'import os;os.chdir("..");print( os.getcwd() )' )
cd ${WORKDIR}/Tests
echo WorkDir: ${WORKDIR}
echo PYTHON: ${PYTHON}
echo Username: $(id -u -n)
cmd () {
echo Info: Command: $*
"$@"
}
cmd mkdir testroot-04
cmd cd testroot-04
TESTROOT=${WORKDIR}/Tests/testroot-04
cmd mkdir tmp
export TMPDIR=${TESTROOT}/tmp
export PYTHONPATH=${WORKDIR}/Source:${WORKDIR}/Examples/Client
export PYSVN="${PYTHON} ${WORKDIR}/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir ${TESTROOT}/configdir"
cmd svnadmin create ${TESTROOT}/repos
echo Info: Testing - mkdir
cmd ${PYSVN} mkdir file://${TESTROOT}/repos/trunk -m "test-04 add trunk"
cmd ${PYSVN} mkdir file://${TESTROOT}/repos/trunk/test -m "test-04 add test"
echo Info: Install hooks
echo '#!/bin/sh' >${TESTROOT}/repos/hooks/pre-commit
echo export PYTHONPATH=$PYTHONPATH >>${TESTROOT}/repos/hooks/pre-commit
echo export LD_LIBRARY_PATH=$LD_LIBRARY_PATH >>${TESTROOT}/repos/hooks/pre-commit
echo export PATH=$PATH >>${TESTROOT}/repos/hooks/pre-commit
echo echo $PYTHON ${WORKDIR}/Tests/test_04_commit_hook_test_1.py pre-commit '"$@"' ">${TESTROOT}/pre_test_1.output" >>${TESTROOT}/repos/hooks/pre-commit
echo $PYTHON ${WORKDIR}/Tests/test_04_commit_hook_test_1.py pre-commit '"$@"' ">>${TESTROOT}/pre_test_1.output" >>${TESTROOT}/repos/hooks/pre-commit
chmod +x ${TESTROOT}/repos/hooks/pre-commit
echo '#!/bin/sh' >${TESTROOT}/repos/hooks/post-commit
echo export PYTHONPATH=$PYTHONPATH >>${TESTROOT}/repos/hooks/post-commit
echo export LD_LIBRARY_PATH=$LD_LIBRARY_PATH >>${TESTROOT}/repos/hooks/post-commit
echo export PATH=$PATH >>${TESTROOT}/repos/hooks/post-commit
echo echo $PYTHON ${WORKDIR}/Tests/test_04_commit_hook_test_1.py post-commit '"$@"' is_revision ">${TESTROOT}/post_test_1.output" >>${TESTROOT}/repos/hooks/post-commit
echo $PYTHON ${WORKDIR}/Tests/test_04_commit_hook_test_1.py post-commit '"$@"' is_revision ">>${TESTROOT}/post_test_1.output" >>${TESTROOT}/repos/hooks/post-commit
chmod +x ${TESTROOT}/repos/hooks/post-commit
cmd ${PYSVN} mkdir file://${TESTROOT}/repos/trunk/test/a -m "pre-commit test 1"
echo Info: pre_test_1.output start ------------------------------------
cat ${TESTROOT}/pre_test_1.output
echo Info: pre_test_1.output end --------------------------------------
echo Info: post_test_1.output start -----------------------------------
cat ${TESTROOT}/post_test_1.output
echo Info: post_test_1.output end -------------------------------------
echo Info: Add two files
cmd ${PYSVN} checkout file://${TESTROOT}/repos/trunk/test ${TESTROOT}/wc
echo file1 ROOT > ${TESTROOT}/wc/file1.txt
echo file1 A > ${TESTROOT}/wc/a/file1.txt
cmd ${PYSVN} add ${TESTROOT}/wc/file1.txt
cmd ${PYSVN} add ${TESTROOT}/wc/a/file1.txt
cmd ${PYSVN} checkin -m "Add two files" ${TESTROOT}/wc
echo Info: pre_test_1.output start ------------------------------------
cat ${TESTROOT}/pre_test_1.output
echo Info: pre_test_1.output end --------------------------------------
echo Info: post_test_1.output start -----------------------------------
cat ${TESTROOT}/post_test_1.output
echo Info: post_test_1.output end -------------------------------------
echo Info: Mod one file Mod one prop
echo file1 ROOT ln 2 > ${TESTROOT}/wc/file1.txt
cmd ${PYSVN} propset svn:eol-style native ${TESTROOT}/wc/a/file1.txt
cmd ${PYSVN} checkin -m "Mod one file Mod one prop" ${TESTROOT}/wc
echo Info: pre_test_1.output start ------------------------------------
cat ${TESTROOT}/pre_test_1.output
echo Info: pre_test_1.output end --------------------------------------
echo Info: post_test_1.output start -----------------------------------
cat ${TESTROOT}/post_test_1.output
echo Info: post_test_1.output end -------------------------------------
echo Info: Delete one file
cmd ${PYSVN} rm ${TESTROOT}/wc/a/file1.txt
cmd ${PYSVN} checkin -m "Delete one file" ${TESTROOT}/wc
echo Info: pre_test_1.output start ------------------------------------
cat ${TESTROOT}/pre_test_1.output
echo Info: pre_test_1.output end --------------------------------------
echo Info: post_test_1.output start -----------------------------------
cat ${TESTROOT}/post_test_1.output
echo Info: post_test_1.output end -------------------------------------
echo Info: Copy one file
cmd ${PYSVN} cp ${TESTROOT}/wc/file1.txt ${TESTROOT}/wc/file1copy.txt
cmd ${PYSVN} checkin -m "Copy one file" ${TESTROOT}/wc
echo Info: pre_test_1.output start ------------------------------------
cat ${TESTROOT}/pre_test_1.output
echo Info: pre_test_1.output end --------------------------------------
echo Info: post_test_1.output start -----------------------------------
cat ${TESTROOT}/post_test_1.output
echo Info: post_test_1.output end -------------------------------------
pysvn-1.8.0/Tests/test-04.unix.known_good-py2-svn1.4.log 000644 000771 000771 00000025711 11253135715 022045 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn-next/Extension
PYTHON: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python
Username: barry
Info: Command: mkdir testroot-04
Info: Command: cd testroot-04
Info: Command: mkdir tmp
Info: Command: svnadmin create /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos
Info: Testing - mkdir
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir mkdir file:///Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos/trunk -m test-04 add trunk
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir mkdir file:///Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos/trunk/test -m test-04 add test
Info: Install hooks
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir mkdir file:///Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos/trunk/test/a -m pre-commit test 1
Info: test_1.output start ----------------------------------------
/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Tests/test_04_pre_commit_test_1.py /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos 2-1
Info: pre commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos, 2-1) ...
Info: revproplist() ...
svn:log: pre-commit test 1
svn:check-locks: true
svn:author: barry
svn:date: 2008-10-07T19:55:31.759324Z
Info: changed() ...
trunk/test/a: action='A', kind=, text_mod=0, prop_mod=0
Info: changed( copy_info=True ) ...
trunk/test/a: action='A', kind=, text_mod=0, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
Info: test_1.output end ------------------------------------------
Info: Add two files
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir checkout file:///Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos/trunk/test /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc
A /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc/a
U /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc
Checked out revision 3
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir add /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc/file1.txt
A /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir add /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc/a/file1.txt
A /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc/a/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir checkin -m Add two files /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc
A wc/a/file1.txt
A wc/file1.txt
Revision 4
Info: test_1.output start ----------------------------------------
/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Tests/test_04_pre_commit_test_1.py /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos 3-1
Info: pre commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos, 3-1) ...
Info: revproplist() ...
svn:log: Add two files
svn:check-locks: true
svn:author: barry
svn:date: 2008-10-07T19:55:34.542409Z
Info: changed() ...
trunk/test/a/file1.txt: action='A', kind=, text_mod=1, prop_mod=0
contents: 'file1 A\n'
trunk/test/file1.txt: action='A', kind=, text_mod=1, prop_mod=0
contents: 'file1 ROOT\n'
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='A', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 A\n'
trunk/test/file1.txt: action='A', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 ROOT\n'
Info: test_1.output end ------------------------------------------
Info: Mod one file Mod one prop
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir propset svn:eol-style native /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc/a/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir checkin -m Mod one file Mod one prop /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc
M wc/a/file1.txt
M wc/file1.txt
Revision 5
Info: test_1.output start ----------------------------------------
/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Tests/test_04_pre_commit_test_1.py /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos 4-1
Info: pre commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos, 4-1) ...
Info: revproplist() ...
svn:log: Mod one file Mod one prop
svn:check-locks: true
svn:author: barry
svn:date: 2008-10-07T19:55:36.343643Z
Info: changed() ...
trunk/test/a/file1.txt: action='R', kind=, text_mod=0, prop_mod=1
svn:eol-style: native
contents: 'file1 A\n'
trunk/test/file1.txt: action='R', kind=, text_mod=1, prop_mod=0
contents: 'file1 ROOT ln 2\n'
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='R', kind=, text_mod=0, prop_mod=1 copyfrom_rev=0 copyfrom_path=None
svn:eol-style: native
contents: 'file1 A\n'
trunk/test/file1.txt: action='R', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 ROOT ln 2\n'
Info: test_1.output end ------------------------------------------
Info: Delete one file
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir rm /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc/a/file1.txt
D /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc/a/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir checkin -m Delete one file /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc
D wc/a/file1.txt
Revision 6
Info: test_1.output start ----------------------------------------
/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Tests/test_04_pre_commit_test_1.py /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos 5-1
Info: pre commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos, 5-1) ...
Info: revproplist() ...
svn:log: Delete one file
svn:check-locks: true
svn:author: barry
svn:date: 2008-10-07T19:55:38.075866Z
Info: changed() ...
trunk/test/a/file1.txt: action='D', kind=, text_mod=0, prop_mod=0
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='D', kind=, text_mod=0, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
Info: test_1.output end ------------------------------------------
Info: Copy one file
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir cp /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc/file1.txt /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc/file1copy.txt
A /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc/file1copy.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/configdir checkin -m Copy one file /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/wc
A wc/file1copy.txt
Revision 7
Info: test_1.output start ----------------------------------------
/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn-next/Extension/Tests/test_04_pre_commit_test_1.py /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos 6-1
Info: pre commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn-next/Extension/Tests/testroot-04/repos, 6-1) ...
Info: revproplist() ...
svn:log: Copy one file
svn:check-locks: true
svn:author: barry
svn:date: 2008-10-07T19:55:40.622891Z
Info: changed() ...
trunk/test/file1copy.txt: action='A', kind=, text_mod=0, prop_mod=0
contents: 'file1 ROOT ln 2\n'
Info: changed( copy_info=True ) ...
trunk/test/file1copy.txt: action='A', kind=, text_mod=0, prop_mod=0 copyfrom_rev=5 copyfrom_path=u'/trunk/test/file1.txt'
contents: 'file1 ROOT ln 2\n'
Info: test_1.output end ------------------------------------------
pysvn-1.8.0/Tests/test-04.unix.known_good-py2-svn1.5.log 000644 000771 000771 00000030217 11253135715 022043 0 ustar 00barry 000000 000000 WorkDir: /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25
PYTHON: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python
Username: bscott
Info: Command: mkdir testroot-04
Info: Command: cd testroot-04
Info: Command: mkdir tmp
Info: Command: svnadmin create /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos
Info: Testing - mkdir
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir mkdir file:///Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos/trunk -m test-04 add trunk
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir mkdir file:///Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos/trunk/test -m test-04 add test
Info: Install hooks
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir mkdir file:///Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos/trunk/test/a -m pre-commit test 1
Info: test_1.output start ----------------------------------------
/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/test_04_pre_commit_test_1.py /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos 2-2
Info: pre commit test 1
Info: Transaction( /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos, 2-2) ...
Info: revproplist() ...
svn:log: pre-commit test 1
svn:check-locks: true
svn:author: bscott
svn:date: 2009-04-17T15:22:53.727841Z
Info: changed() ...
trunk/test/a: action='A', kind=, text_mod=0, prop_mod=0
Info: changed( copy_info=True ) ...
trunk/test/a: action='A', kind=, text_mod=0, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
Info: test_1.output end ------------------------------------------
Info: Add two files
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir checkout file:///Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos/trunk/test /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc
A /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc/a
U /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc
Checked out revision 3
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir add /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc/file1.txt
A /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir add /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc/a/file1.txt
A /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc/a/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir checkin -m Add two files /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc
A wc/a/file1.txt
A wc/file1.txt
Revision 4
Info: test_1.output start ----------------------------------------
/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/test_04_pre_commit_test_1.py /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos 3-3
Info: pre commit test 1
Info: Transaction( /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos, 3-3) ...
Info: revproplist() ...
svn:log: Add two files
svn:check-locks: true
svn:author: bscott
svn:date: 2009-04-17T15:22:55.621602Z
Info: changed() ...
trunk/test/a/file1.txt: action='A', kind=, text_mod=1, prop_mod=0
contents: 'file1 A\n'
trunk/test/file1.txt: action='A', kind=, text_mod=1, prop_mod=0
contents: 'file1 ROOT\n'
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='A', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 A\n'
trunk/test/file1.txt: action='A', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 ROOT\n'
Info: test_1.output end ------------------------------------------
Info: Mod one file Mod one prop
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir propset svn:eol-style native /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc/a/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir checkin -m Mod one file Mod one prop /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc
M wc/a/file1.txt
M wc/file1.txt
Revision 5
Info: test_1.output start ----------------------------------------
/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/test_04_pre_commit_test_1.py /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos 4-4
Info: pre commit test 1
Info: Transaction( /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos, 4-4) ...
Info: revproplist() ...
svn:log: Mod one file Mod one prop
svn:check-locks: true
svn:author: bscott
svn:date: 2009-04-17T15:22:56.483707Z
Info: changed() ...
trunk/test/a/file1.txt: action='R', kind=, text_mod=0, prop_mod=1
svn:eol-style: native
contents: 'file1 A\n'
trunk/test/file1.txt: action='R', kind=, text_mod=1, prop_mod=0
contents: 'file1 ROOT ln 2\n'
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='R', kind=, text_mod=0, prop_mod=1 copyfrom_rev=0 copyfrom_path=None
svn:eol-style: native
contents: 'file1 A\n'
trunk/test/file1.txt: action='R', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 ROOT ln 2\n'
Info: test_1.output end ------------------------------------------
Info: Delete one file
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir rm /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc/a/file1.txt
D /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc/a/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir checkin -m Delete one file /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc
D wc/a/file1.txt
Revision 6
Info: test_1.output start ----------------------------------------
/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/test_04_pre_commit_test_1.py /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos 5-5
Info: pre commit test 1
Info: Transaction( /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos, 5-5) ...
Info: revproplist() ...
svn:log: Delete one file
svn:check-locks: true
svn:author: bscott
svn:date: 2009-04-17T15:22:57.458015Z
Info: changed() ...
trunk/test/a/file1.txt: action='D', kind=, text_mod=0, prop_mod=0
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='D', kind=, text_mod=0, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
Info: test_1.output end ------------------------------------------
Info: Copy one file
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir cp /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc/file1.txt /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc/file1copy.txt
A /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc/file1copy.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/configdir checkin -m Copy one file /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/wc
A wc/file1copy.txt
Revision 7
Info: test_1.output start ----------------------------------------
/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/test_04_pre_commit_test_1.py /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos 6-6
Info: pre commit test 1
Info: Transaction( /Users/bscott/BuildTemp/Darwin_macmini/svn-1.5.6/pysvn/py25/Tests/testroot-04/repos, 6-6) ...
Info: revproplist() ...
svn:log: Copy one file
svn:check-locks: true
svn:author: bscott
svn:date: 2009-04-17T15:22:59.276332Z
Info: changed() ...
trunk/test/file1copy.txt: action='A', kind=, text_mod=0, prop_mod=0
contents: 'file1 ROOT ln 2\n'
Info: changed( copy_info=True ) ...
trunk/test/file1copy.txt: action='A', kind=, text_mod=0, prop_mod=0 copyfrom_rev=5 copyfrom_path=u'/trunk/test/file1.txt'
contents: 'file1 ROOT ln 2\n'
Info: test_1.output end ------------------------------------------
pysvn-1.8.0/Tests/test-04.unix.known_good-py2-svn1.6.log 000644 000771 000771 00000043565 12164337446 022065 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Username: barry
Info: Command: mkdir testroot-04
Info: Command: cd testroot-04
Info: Command: mkdir tmp
Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos
Info: Testing - mkdir
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos/trunk -m test-04 add trunk
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos/trunk/test -m test-04 add test
Info: Install hooks
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos/trunk/test/a -m pre-commit test 1
Info: pre_test_1.output start ------------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py pre-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 2-2
Info: pre-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 2-2) ...
Info: revproplist() ...
svn:author: barry
svn:check-locks: true
svn:date: 2013-07-01T17:37:25.566665Z
svn:log: pre-commit test 1
Info: changed() ...
trunk/test/a: action='A', kind=, text_mod=0, prop_mod=0
Info: changed( copy_info=True ) ...
trunk/test/a: action='A', kind=, text_mod=0, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
Info: pre_test_1.output end --------------------------------------
Info: post_test_1.output start -----------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py post-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 3 is_revision
Info: post-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 3, is_revision=True) ...
Info: revproplist() ...
svn:author: barry
svn:date: 2013-07-01T17:37:25.609987Z
svn:log: pre-commit test 1
Info: changed() ...
trunk/test/a: action='A', kind=, text_mod=0, prop_mod=0
Info: changed( copy_info=True ) ...
trunk/test/a: action='A', kind=, text_mod=0, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
Info: post_test_1.output end -------------------------------------
Info: Add two files
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc
Checked out revision 3
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir add /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir add /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir checkin -m Add two files /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/file1.txt
Revision 4
Info: pre_test_1.output start ------------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py pre-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 3-3
Info: pre-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 3-3) ...
Info: revproplist() ...
svn:author: barry
svn:check-locks: true
svn:date: 2013-07-01T17:37:26.169993Z
svn:log: Add two files
Info: changed() ...
trunk/test/a/file1.txt: action='A', kind=, text_mod=1, prop_mod=0
contents: 'file1 A\n'
trunk/test/file1.txt: action='A', kind=, text_mod=1, prop_mod=0
contents: 'file1 ROOT\n'
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='A', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 A\n'
trunk/test/file1.txt: action='A', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 ROOT\n'
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
/trunk/test/a/file1.txt: kind=
/trunk/test/file1.txt: kind=
Info: pre_test_1.output end --------------------------------------
Info: post_test_1.output start -----------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py post-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 4 is_revision
Info: post-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 4, is_revision=True) ...
Info: revproplist() ...
svn:author: barry
svn:date: 2013-07-01T17:37:26.220972Z
svn:log: Add two files
Info: changed() ...
trunk/test/a/file1.txt: action='A', kind=, text_mod=1, prop_mod=0
contents: 'file1 A\n'
trunk/test/file1.txt: action='A', kind=, text_mod=1, prop_mod=0
contents: 'file1 ROOT\n'
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='A', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 A\n'
trunk/test/file1.txt: action='A', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 ROOT\n'
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
/trunk/test/a/file1.txt: kind=
/trunk/test/file1.txt: kind=
Info: post_test_1.output end -------------------------------------
Info: Mod one file Mod one prop
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir propset svn:eol-style native /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a/file1.txt
property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir checkin -m Mod one file Mod one prop /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a/file1.txt
M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/file1.txt
Revision 5
Info: pre_test_1.output start ------------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py pre-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 4-4
Info: pre-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 4-4) ...
Info: revproplist() ...
svn:author: barry
svn:check-locks: true
svn:date: 2013-07-01T17:37:27.128077Z
svn:log: Mod one file Mod one prop
Info: changed() ...
trunk/test/a/file1.txt: action='R', kind=, text_mod=0, prop_mod=1
svn:eol-style: native
contents: 'file1 A\n'
trunk/test/file1.txt: action='R', kind=, text_mod=1, prop_mod=0
contents: 'file1 ROOT ln 2\n'
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='R', kind=, text_mod=0, prop_mod=1 copyfrom_rev=0 copyfrom_path=None
svn:eol-style: native
contents: 'file1 A\n'
trunk/test/file1.txt: action='R', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 ROOT ln 2\n'
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
/trunk/test/a/file1.txt: kind=
/trunk/test/file1.txt: kind=
Info: pre_test_1.output end --------------------------------------
Info: post_test_1.output start -----------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py post-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 5 is_revision
Info: post-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 5, is_revision=True) ...
Info: revproplist() ...
svn:author: barry
svn:date: 2013-07-01T17:37:27.177397Z
svn:log: Mod one file Mod one prop
Info: changed() ...
trunk/test/a/file1.txt: action='R', kind=, text_mod=0, prop_mod=1
svn:eol-style: native
contents: 'file1 A\n'
trunk/test/file1.txt: action='R', kind=, text_mod=1, prop_mod=0
contents: 'file1 ROOT ln 2\n'
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='R', kind=, text_mod=0, prop_mod=1 copyfrom_rev=0 copyfrom_path=None
svn:eol-style: native
contents: 'file1 A\n'
trunk/test/file1.txt: action='R', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 ROOT ln 2\n'
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
/trunk/test/a/file1.txt: kind=
/trunk/test/file1.txt: kind=
Info: post_test_1.output end -------------------------------------
Info: Delete one file
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir rm /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a/file1.txt
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir checkin -m Delete one file /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc
D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a/file1.txt
Revision 6
Info: pre_test_1.output start ------------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py pre-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 5-5
Info: pre-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 5-5) ...
Info: revproplist() ...
svn:author: barry
svn:check-locks: true
svn:date: 2013-07-01T17:37:28.127076Z
svn:log: Delete one file
Info: changed() ...
trunk/test/a/file1.txt: action='D', kind=, text_mod=0, prop_mod=0
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='D', kind=, text_mod=0, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
/trunk/test/file1.txt: kind=
Info: pre_test_1.output end --------------------------------------
Info: post_test_1.output start -----------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py post-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 6 is_revision
Info: post-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 6, is_revision=True) ...
Info: revproplist() ...
svn:author: barry
svn:date: 2013-07-01T17:37:28.177861Z
svn:log: Delete one file
Info: changed() ...
trunk/test/a/file1.txt: action='D', kind=, text_mod=0, prop_mod=0
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='D', kind=, text_mod=0, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
/trunk/test/file1.txt: kind=
Info: post_test_1.output end -------------------------------------
Info: Copy one file
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir cp /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/file1.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/file1copy.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/file1copy.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir checkin -m Copy one file /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/file1copy.txt
Revision 7
Info: pre_test_1.output start ------------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py pre-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 6-6
Info: pre-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 6-6) ...
Info: revproplist() ...
svn:author: barry
svn:check-locks: true
svn:date: 2013-07-01T17:37:30.073400Z
svn:log: Copy one file
Info: changed() ...
trunk/test/file1copy.txt: action='A', kind=, text_mod=0, prop_mod=0
contents: 'file1 ROOT ln 2\n'
Info: changed( copy_info=True ) ...
trunk/test/file1copy.txt: action='A', kind=, text_mod=0, prop_mod=0 copyfrom_rev=5 copyfrom_path=u'/trunk/test/file1.txt'
contents: 'file1 ROOT ln 2\n'
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
/trunk/test/file1.txt: kind=
/trunk/test/file1copy.txt: kind=
Info: pre_test_1.output end --------------------------------------
Info: post_test_1.output start -----------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py post-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 7 is_revision
Info: post-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 7, is_revision=True) ...
Info: revproplist() ...
svn:author: barry
svn:date: 2013-07-01T17:37:30.119322Z
svn:log: Copy one file
Info: changed() ...
trunk/test/file1copy.txt: action='A', kind=, text_mod=0, prop_mod=0
contents: 'file1 ROOT ln 2\n'
Info: changed( copy_info=True ) ...
trunk/test/file1copy.txt: action='A', kind=, text_mod=0, prop_mod=0 copyfrom_rev=5 copyfrom_path=u'/trunk/test/file1.txt'
contents: 'file1 ROOT ln 2\n'
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
/trunk/test/file1.txt: kind=
/trunk/test/file1copy.txt: kind=
Info: post_test_1.output end -------------------------------------
pysvn-1.8.0/Tests/test-04.unix.known_good-py2-svn1.7.log 000644 000771 000771 00000043675 12164346274 022067 0 ustar 00barry 000000 000000 WorkDir: /Users/barry/wc/svn/pysvn/Extension
PYTHON: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Username: barry
Info: Command: mkdir testroot-04
Info: Command: cd testroot-04
Info: Command: mkdir tmp
Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos
Info: Testing - mkdir
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos/trunk -m test-04 add trunk
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos/trunk/test -m test-04 add test
Info: Install hooks
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos/trunk/test/a -m pre-commit test 1
Info: pre_test_1.output start ------------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py pre-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 2-2
Info: pre-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 2-2) ...
Info: revproplist() ...
svn:author: barry
svn:check-locks: true
svn:date: 2013-07-01T18:34:59.699285Z
svn:log: pre-commit test 1
Info: changed() ...
trunk/test/a: action='A', kind=, text_mod=0, prop_mod=0
Info: changed( copy_info=True ) ...
trunk/test/a: action='A', kind=, text_mod=0, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
Info: pre_test_1.output end --------------------------------------
Info: post_test_1.output start -----------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py post-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 3 is_revision
Info: post-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 3, is_revision=True) ...
Info: revproplist() ...
svn:author: barry
svn:date: 2013-07-01T18:34:59.790538Z
svn:log: pre-commit test 1
Info: changed() ...
trunk/test/a: action='A', kind=, text_mod=0, prop_mod=0
Info: changed( copy_info=True ) ...
trunk/test/a: action='A', kind=, text_mod=0, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
Info: post_test_1.output end -------------------------------------
Info: Add two files
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a
U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc
update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc
Checked out revision 3
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir add /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir add /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a/file1.txt
Info: Command: /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/configdir checkin -m Add two files /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/a/file1.txt
A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/wc/file1.txt
Revision 4
Info: pre_test_1.output start ------------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py pre-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 3-3
Info: pre-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 3-3) ...
Info: revproplist() ...
svn:author: barry
svn:check-locks: true
svn:date: 2013-07-01T18:35:00.173859Z
svn:log: Add two files
Info: changed() ...
trunk/test/a/file1.txt: action='A', kind=, text_mod=1, prop_mod=0
contents: 'file1 A\n'
trunk/test/file1.txt: action='A', kind=, text_mod=1, prop_mod=0
contents: 'file1 ROOT\n'
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='A', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 A\n'
trunk/test/file1.txt: action='A', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 ROOT\n'
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
/trunk/test/a/file1.txt: kind=
/trunk/test/file1.txt: kind=
Info: pre_test_1.output end --------------------------------------
Info: post_test_1.output start -----------------------------------
/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Users/barry/wc/svn/pysvn/Extension/Tests/test_04_commit_hook_test_1.py post-commit /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos 4 is_revision
Info: post-commit test 1
Info: Transaction( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-04/repos, 4, is_revision=True) ...
Info: revproplist() ...
svn:author: barry
svn:date: 2013-07-01T18:35:00.225436Z
svn:log: Add two files
Info: changed() ...
trunk/test/a/file1.txt: action='A', kind=, text_mod=1, prop_mod=0
contents: 'file1 A\n'
trunk/test/file1.txt: action='A', kind=, text_mod=1, prop_mod=0
contents: 'file1 ROOT\n'
Info: changed( copy_info=True ) ...
trunk/test/a/file1.txt: action='A', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 A\n'
trunk/test/file1.txt: action='A', kind=, text_mod=1, prop_mod=0 copyfrom_rev=0 copyfrom_path=None
contents: 'file1 ROOT\n'
Info: list() ...
/trunk: kind=
/trunk/test: kind=
/trunk/test/a: kind=
/trunk/test/a/file1.txt: kind=