##// END OF EJS Templates
test-merge-default and check-code.py: No "export x=x" in sh
Mads Kiilerich -
r10658:95c7c4b7 stable
parent child Browse files
Show More
@@ -52,6 +52,7 b' testpats = ['
52 (r'/bin/', "don't use explicit paths for tools"),
52 (r'/bin/', "don't use explicit paths for tools"),
53 (r'\$PWD', "don't use $PWD, use `pwd`"),
53 (r'\$PWD', "don't use $PWD, use `pwd`"),
54 (r'[^\n]\Z', "no trailing newline"),
54 (r'[^\n]\Z', "no trailing newline"),
55 (r'export.*=', "don't export and assign at once"),
55 ]
56 ]
56
57
57 testfilters = [
58 testfilters = [
@@ -24,7 +24,7 b' hg merge'
24
24
25 hg up
25 hg up
26 echo % should fail because \> 2 heads
26 echo % should fail because \> 2 heads
27 export HGMERGE=internal:other
27 HGMERGE=internal:other; export HGMERGE
28 hg merge
28 hg merge
29
29
30 echo % should succeed
30 echo % should succeed
General Comments 0
You need to be logged in to leave comments. Login now