comparison tests/test-extension-isolation.t @ 6668:02f8c88f3d59

tests: replace obsolescent egrep with grep -E This avoids the warning “egrep: warning: egrep is obsolescent; using grep -E” on my Arch Linux system. This is similar to 7e5be4a7cda7 in core.
author Manuel Jacob <me@manueljacob.de>
date Fri, 02 Feb 2024 00:09:51 +0100
parents 445240ccb701
children 8da51e02b5d3
comparison
equal deleted inserted replaced
6667:31e157a5cfe2 6668:02f8c88f3d59
115 make sure repos don't affect each other (and check both ways) 115 make sure repos don't affect each other (and check both ways)
116 116
117 Check evolve isolation 117 Check evolve isolation
118 ----------------------- 118 -----------------------
119 119
120 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-no-ext | egrep 'topics|evoext' 120 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-no-ext | grep -E 'topics|evoext'
121 [1] 121 [1]
122 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-evo | egrep 'topics|evoext' 122 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-evo | grep -E 'topics|evoext'
123 _evoext_getbundle_obscommon 123 _evoext_getbundle_obscommon
124 _evoext_obshashrange_v1 124 _evoext_obshashrange_v1
125 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-no-ext | egrep 'topics|evoext' 125 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-no-ext | grep -E 'topics|evoext'
126 [1] 126 [1]
127 127
128 Check topic isolation 128 Check topic isolation
129 --------------------- 129 ---------------------
130 130
131 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-no-ext | egrep 'topics|evoext' 131 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-no-ext | grep -E 'topics|evoext'
132 [1] 132 [1]
133 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-topic | egrep 'topics|evoext' 133 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-topic | grep -E 'topics|evoext'
134 _exttopics_heads 134 _exttopics_heads
135 ext-topics-publish=all 135 ext-topics-publish=all
136 ext-topics-tns-heads 136 ext-topics-tns-heads
137 topics 137 topics
138 topics-namespaces 138 topics-namespaces
139 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-no-ext | egrep 'topics|evoext' 139 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-no-ext | grep -E 'topics|evoext'
140 [1] 140 [1]
141 141
142 Check coupled isolation 142 Check coupled isolation
143 ----------------------- 143 -----------------------
144 144
145 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-no-ext | egrep 'topics|evoext' 145 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-no-ext | grep -E 'topics|evoext'
146 [1] 146 [1]
147 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-both | egrep 'topics|evoext' 147 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-both | grep -E 'topics|evoext'
148 _evoext_getbundle_obscommon 148 _evoext_getbundle_obscommon
149 _evoext_obshashrange_v1 149 _evoext_obshashrange_v1
150 _exttopics_heads 150 _exttopics_heads
151 ext-topics-publish=all 151 ext-topics-publish=all
152 ext-topics-tns-heads 152 ext-topics-tns-heads
153 topics 153 topics
154 topics-namespaces 154 topics-namespaces
155 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-evo | egrep 'topics|evoext' 155 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-evo | grep -E 'topics|evoext'
156 _evoext_getbundle_obscommon 156 _evoext_getbundle_obscommon
157 _evoext_obshashrange_v1 157 _evoext_obshashrange_v1
158 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-topic | egrep 'topics|evoext' 158 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-topic | grep -E 'topics|evoext'
159 _exttopics_heads 159 _exttopics_heads
160 ext-topics-publish=all 160 ext-topics-publish=all
161 ext-topics-tns-heads 161 ext-topics-tns-heads
162 topics 162 topics
163 topics-namespaces 163 topics-namespaces
164 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-evo | egrep 'topics|evoext' 164 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-evo | grep -E 'topics|evoext'
165 _evoext_getbundle_obscommon 165 _evoext_getbundle_obscommon
166 _evoext_obshashrange_v1 166 _evoext_obshashrange_v1
167 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-no-ext | egrep 'topics|evoext' 167 $ hg debugcapabilities http://$LOCALIP:$HGPORT/repo-no-ext | grep -E 'topics|evoext'
168 [1] 168 [1]
169 169
170 Final cleanup 170 Final cleanup
171 ------------- 171 -------------
172 172