##// END OF EJS Templates
tests: avoid export FOO=bar bashism
Martin Geisler -
r8350:1f0f01bc default
parent child Browse files
Show More
@@ -22,8 +22,10 b' echo "cvsps=cvsps -A -u --cvs-direct -q"'
22 echo % create cvs repository
22 echo % create cvs repository
23 mkdir cvsrepo
23 mkdir cvsrepo
24 cd cvsrepo
24 cd cvsrepo
25 export CVSROOT=`pwd`
25 CVSROOT=`pwd`
26 export CVS_OPTIONS=-f
26 export CVSROOT
27 CVS_OPTIONS=-f
28 export CVS_OPTIONS
27 cd ..
29 cd ..
28
30
29 cvscall -q -d "$CVSROOT" init
31 cvscall -q -d "$CVSROOT" init
@@ -19,8 +19,10 b' echo "cvsps.cache=0" >> $HGRCPATH'
19 echo % create cvs repository
19 echo % create cvs repository
20 mkdir cvsrepo
20 mkdir cvsrepo
21 cd cvsrepo
21 cd cvsrepo
22 export CVSROOT=`pwd`
22 CVSROOT=`pwd`
23 export CVS_OPTIONS=-f
23 export CVSROOT
24 CVS_OPTIONS=-f
25 export CVS_OPTIONS
24 cd ..
26 cd ..
25
27
26 cvscall -q -d "$CVSROOT" init
28 cvscall -q -d "$CVSROOT" init
@@ -21,8 +21,10 b' echo "cvsps=builtin" >> $HGRCPATH'
21 echo % create cvs repository
21 echo % create cvs repository
22 mkdir cvsrepo
22 mkdir cvsrepo
23 cd cvsrepo
23 cd cvsrepo
24 export CVSROOT=`pwd`
24 CVSROOT=`pwd`
25 export CVS_OPTIONS=-f
25 export CVSROOT
26 CVS_OPTIONS=-f
27 export CVS_OPTIONS
26 cd ..
28 cd ..
27
29
28 cvscall -q -d "$CVSROOT" init
30 cvscall -q -d "$CVSROOT" init
@@ -21,8 +21,10 b' echo "cvsps=builtin" >> $HGRCPATH'
21 echo % create cvs repository
21 echo % create cvs repository
22 mkdir cvsmaster
22 mkdir cvsmaster
23 cd cvsmaster
23 cd cvsmaster
24 export CVSROOT=`pwd`
24 CVSROOT=`pwd`
25 export CVS_OPTIONS=-f
25 export CVSROOT
26 CVS_OPTIONS=-f
27 export CVS_OPTIONS
26 cd ..
28 cd ..
27
29
28 cvscall -q -d "$CVSROOT" init
30 cvscall -q -d "$CVSROOT" init
@@ -6,7 +6,8 b''
6
6
7 "$TESTDIR/hghave" cvs || exit 80
7 "$TESTDIR/hghave" cvs || exit 80
8
8
9 export CVSROOT=`pwd`/cvsrepo
9 CVSROOT=`pwd`/cvsrepo
10 export CVSROOT
10
11
11 # XXX copied from test-convert-cvs-synthetic
12 # XXX copied from test-convert-cvs-synthetic
12 cvscall()
13 cvscall()
@@ -14,8 +14,10 b' echo "cvsps=builtin" >> $HGRCPATH'
14 echo % create cvs repository with one project
14 echo % create cvs repository with one project
15 mkdir cvsrepo
15 mkdir cvsrepo
16 cd cvsrepo
16 cd cvsrepo
17 export CVSROOT=`pwd`
17 CVSROOT=`pwd`
18 export CVS_OPTIONS=-f
18 export CVSROOT
19 CVS_OPTIONS=-f
20 export CVS_OPTIONS
19 cd ..
21 cd ..
20
22
21 filterpath()
23 filterpath()
General Comments 0
You need to be logged in to leave comments. Login now