##// END OF EJS Templates
tests: use `pwd` instead of ${PWD} in test-convert-git.t - because of Solaris
Mads Kiilerich -
r18508:813b7a1f stable
parent child Browse files
Show More
@@ -78,7 +78,7 b' testpats = ['
78 [
78 [
79 (r'^function', "don't use 'function', use old style"),
79 (r'^function', "don't use 'function', use old style"),
80 (r'^diff.*-\w*N', "don't use 'diff -N'"),
80 (r'^diff.*-\w*N', "don't use 'diff -N'"),
81 (r'\$PWD', "don't use $PWD, use `pwd`"),
81 (r'\$PWD|\${PWD}', "don't use $PWD, use `pwd`"),
82 (r'^([^"\'\n]|("[^"\n]*")|(\'[^\'\n]*\'))*\^', "^ must be quoted"),
82 (r'^([^"\'\n]|("[^"\n]*")|(\'[^\'\n]*\'))*\^', "^ must be quoted"),
83 ]
83 ]
84 ]
84 ]
@@ -307,7 +307,7 b' test sub modules'
307 $ echo 'sub' >> foo
307 $ echo 'sub' >> foo
308 $ git add foo
308 $ git add foo
309 $ commit -a -m 'addfoo'
309 $ commit -a -m 'addfoo'
310 $ BASE=${PWD}
310 $ BASE=`pwd`
311 $ cd ..
311 $ cd ..
312 $ mkdir git-repo6
312 $ mkdir git-repo6
313 $ cd git-repo6
313 $ cd git-repo6
General Comments 0
You need to be logged in to leave comments. Login now