##// END OF EJS Templates
backout: backed out changeset 6edc8800dbc3...
Raphaël Gomès -
r49071:8c34edb1 default
parent child Browse files
Show More
@@ -316,9 +316,6 b' def _rundispatch(req):'
316 except IOError as inst:
316 except IOError as inst:
317 if inst.errno != errno.EPIPE:
317 if inst.errno != errno.EPIPE:
318 raise
318 raise
319 if req.ui.configbool(b'ui', b'detailed-exit-code'):
320 ret = 250
321 else:
322 ret = -1
319 ret = -1
323 finally:
320 finally:
324 duration = util.timer() - starttime
321 duration = util.timer() - starttime
@@ -188,12 +188,12 b' in this test.'
188 $ chg bulkwrite --pager=on --color no --config ui.formatted=True
188 $ chg bulkwrite --pager=on --color no --config ui.formatted=True
189 paged! 'going to write massive data\n'
189 paged! 'going to write massive data\n'
190 killed! (?)
190 killed! (?)
191 [250]
191 [255]
192
192
193 $ chg bulkwrite --pager=on --color no --config ui.formatted=True
193 $ chg bulkwrite --pager=on --color no --config ui.formatted=True
194 paged! 'going to write massive data\n'
194 paged! 'going to write massive data\n'
195 killed! (?)
195 killed! (?)
196 [250]
196 [255]
197
197
198 $ cd ..
198 $ cd ..
199
199
@@ -792,7 +792,7 b' option to not shutdown on SIGINT:'
792 *** runcommand debugsuicide
792 *** runcommand debugsuicide
793 interrupted!
793 interrupted!
794 killed!
794 killed!
795 [250]
795 [255]
796
796
797 #endif
797 #endif
798
798
@@ -66,7 +66,7 b' Test ctrl-c'
66 $ sh -c "../send-signal.sh INT" &
66 $ sh -c "../send-signal.sh INT" &
67 $ hg wait-signal
67 $ hg wait-signal
68 interrupted!
68 interrupted!
69 [250]
69 [255]
70
70
71 $ cat >> $HGRCPATH << EOF
71 $ cat >> $HGRCPATH << EOF
72 > [experimental]
72 > [experimental]
@@ -77,7 +77,7 b' Test ctrl-c'
77 $ sh -c "../send-signal.sh INT" &
77 $ sh -c "../send-signal.sh INT" &
78 $ hg wait-signal
78 $ hg wait-signal
79 interrupted!
79 interrupted!
80 [250]
80 [255]
81
81
82 $ cat >> $HGRCPATH << EOF
82 $ cat >> $HGRCPATH << EOF
83 > [experimental]
83 > [experimental]
@@ -91,4 +91,4 b' Test ctrl-c'
91 press ^C again to terminate immediately (dangerous)
91 press ^C again to terminate immediately (dangerous)
92 end of unsafe operation
92 end of unsafe operation
93 interrupted!
93 interrupted!
94 [250]
94 [255]
General Comments 0
You need to be logged in to leave comments. Login now