Update of /cvsroot/cvsshell/cvsshell/testing
In directory usw-pr-cvs1:/tmp/cvs-serv17143/testing
Modified Files:
run-test.py
Log Message:
* Directories in listing are now marked
* listing is made dirty after adding a directory
Index: run-test.py
===================================================================
RCS file: /cvsroot/cvsshell/cvsshell/testing/run-test.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** run-test.py 11 Mar 2002 12:02:15 -0000 1.2
--- run-test.py 14 Mar 2002 18:45:47 -0000 1.3
***************
*** 32,36 ****
testcode = open(thisDir + '/testinput').read()
os.system('rm -rf /tmp/testdata /tmp/cvsroot') # little clean-up
! os.unlink(os.path.join(os.environ['HOME'], '.cvsshellrc'))
os.chdir('/tmp')
stdin, stdout, stderr = os.popen3('python %s/../src/cvs_shell.py -v' % thisDir)
--- 32,38 ----
testcode = open(thisDir + '/testinput').read()
os.system('rm -rf /tmp/testdata /tmp/cvsroot') # little clean-up
! try:
! os.unlink(os.path.join(os.environ['HOME'], '.cvsshellrc'))
! except: pass
os.chdir('/tmp')
stdin, stdout, stderr = os.popen3('python %s/../src/cvs_shell.py -v' % thisDir)
|