##// END OF EJS Templates
test-issue352: skip tests if platform does not support EOL in paths.
Patrick Mezard -
r5075:2184378b default
parent child Browse files
Show More
@@ -1,22 +1,24
1 #!/bin/sh
1 #!/bin/sh
2 # http://www.selenic.com/mercurial/bts/issue352
2 # http://www.selenic.com/mercurial/bts/issue352
3
3
4 "$TESTDIR/hghave" eol-in-paths || exit 80
5
4 hg init foo
6 hg init foo
5 cd foo
7 cd foo
6
8
7 A=`printf 'he\rllo'`
9 A=`printf 'he\rllo'`
8
10
9 echo foo > "$A"
11 echo foo > "$A"
10 hg add
12 hg add
11 hg ci -A -m m
13 hg ci -A -m m
12 rm "$A"
14 rm "$A"
13
15
14 echo foo > "hell
16 echo foo > "hell
15 o"
17 o"
16 hg add
18 hg add
17 hg ci -A -m m
19 hg ci -A -m m
18
20
19 echo foo > "$A"
21 echo foo > "$A"
20 hg debugwalk
22 hg debugwalk
21
23
22 exit 0
24 exit 0
General Comments 0
You need to be logged in to leave comments. Login now