##// END OF EJS Templates
tests: update test-debugcommands to pass our import checker
Augie Fackler -
r33955:90981271 default
parent child Browse files
Show More
@@ -132,25 +132,27 b' Test cache warming command'
132 Test internal debugstacktrace command
132 Test internal debugstacktrace command
133
133
134 $ cat > debugstacktrace.py << EOF
134 $ cat > debugstacktrace.py << EOF
135 > from mercurial.util import debugstacktrace, dst, sys
135 > from __future__ import absolute_import
136 > import sys
137 > from mercurial import util
136 > def f():
138 > def f():
137 > debugstacktrace(f=sys.stdout)
139 > util.debugstacktrace(f=sys.stdout)
138 > g()
140 > g()
139 > def g():
141 > def g():
140 > dst('hello from g\\n', skip=1)
142 > util.dst('hello from g\\n', skip=1)
141 > h()
143 > h()
142 > def h():
144 > def h():
143 > dst('hi ...\\nfrom h hidden in g', 1, depth=2)
145 > util.dst('hi ...\\nfrom h hidden in g', 1, depth=2)
144 > f()
146 > f()
145 > EOF
147 > EOF
146 $ $PYTHON debugstacktrace.py
148 $ $PYTHON debugstacktrace.py
147 stacktrace at:
149 stacktrace at:
148 debugstacktrace.py:10 in * (glob)
150 debugstacktrace.py:12 in * (glob)
149 debugstacktrace.py:3 in f
151 debugstacktrace.py:5 in f
150 hello from g at:
152 hello from g at:
151 debugstacktrace.py:10 in * (glob)
153 debugstacktrace.py:12 in * (glob)
152 debugstacktrace.py:4 in f
154 debugstacktrace.py:6 in f
153 hi ...
155 hi ...
154 from h hidden in g at:
156 from h hidden in g at:
155 debugstacktrace.py:4 in f
157 debugstacktrace.py:6 in f
156 debugstacktrace.py:7 in g
158 debugstacktrace.py:9 in g
General Comments 0
You need to be logged in to leave comments. Login now