##// END OF EJS Templates
tests: make tests with temporary environment setting portable...
FUJIWARA Katsunori -
r24892:8cc6036b 3.4 stable
parent child Browse files
Show More
@@ -1066,12 +1066,16 b' aliases:'
1066 <fullreposet+ 0:9>>
1066 <fullreposet+ 0:9>>
1067 6
1067 6
1068
1068
1069 $ HGPLAIN=1 try m
1069 $ HGPLAIN=1
1070 $ export HGPLAIN
1071 $ try m
1070 ('symbol', 'm')
1072 ('symbol', 'm')
1071 abort: unknown revision 'm'!
1073 abort: unknown revision 'm'!
1072 [255]
1074 [255]
1073
1075
1074 $ HGPLAIN=1 HGPLAINEXCEPT=revsetalias try m
1076 $ HGPLAINEXCEPT=revsetalias
1077 $ export HGPLAINEXCEPT
1078 $ try m
1075 ('symbol', 'm')
1079 ('symbol', 'm')
1076 (func
1080 (func
1077 ('symbol', 'merge')
1081 ('symbol', 'merge')
@@ -1081,8 +1085,6 b' aliases:'
1081 <fullreposet+ 0:9>>
1085 <fullreposet+ 0:9>>
1082 6
1086 6
1083
1087
1084 (for some reason HGPLAIN and HGPLAINEXCEPT can carry forward)
1085
1086 $ unset HGPLAIN
1088 $ unset HGPLAIN
1087 $ unset HGPLAINEXCEPT
1089 $ unset HGPLAINEXCEPT
1088
1090
@@ -1097,14 +1099,18 b' aliases:'
1097 <baseset+ [8]>
1099 <baseset+ [8]>
1098 8
1100 8
1099
1101
1100 $ HGPLAIN=1 try 'p2(.)'
1102 $ HGPLAIN=1
1103 $ export HGPLAIN
1104 $ try 'p2(.)'
1101 (func
1105 (func
1102 ('symbol', 'p2')
1106 ('symbol', 'p2')
1103 ('symbol', '.'))
1107 ('symbol', '.'))
1104 * set:
1108 * set:
1105 <baseset+ []>
1109 <baseset+ []>
1106
1110
1107 $ HGPLAIN=1 HGPLAINEXCEPT=revsetalias try 'p2(.)'
1111 $ HGPLAINEXCEPT=revsetalias
1112 $ export HGPLAINEXCEPT
1113 $ try 'p2(.)'
1108 (func
1114 (func
1109 ('symbol', 'p2')
1115 ('symbol', 'p2')
1110 ('symbol', '.'))
1116 ('symbol', '.'))
General Comments 0
You need to be logged in to leave comments. Login now