##// END OF EJS Templates
pypy: fix failing test files with Pypy5.6.0...
Boris Feld -
r33609:6c142f27 stable
parent child Browse files
Show More
@@ -234,7 +234,9 b' check that local configs for the cached '
234 *** runcommand --config hooks.pre-identify=python:hook.hook id
234 *** runcommand --config hooks.pre-identify=python:hook.hook id
235 eff892de26ec tip
235 eff892de26ec tip
236
236
237 Clean hook cached version
237 $ rm hook.py*
238 $ rm hook.py*
239 $ rm -Rf __pycache__
238
240
239 $ echo a >> a
241 $ echo a >> a
240 >>> import os
242 >>> import os
@@ -270,7 +270,11 b' Aborting transaction prevents fncache ch'
270 > cmdtable = {}
270 > cmdtable = {}
271 >
271 >
272 > EOF
272 > EOF
273
274 Clean cached version
273 $ rm -f "${extpath}c"
275 $ rm -f "${extpath}c"
276 $ rm -Rf "`dirname $extpath`/__pycache__"
277
274 $ touch z
278 $ touch z
275 $ hg ci -qAm z
279 $ hg ci -qAm z
276 transaction abort!
280 transaction abort!
@@ -305,7 +309,11 b' Aborted transactions can be recovered la'
305 > cmdtable = {}
309 > cmdtable = {}
306 >
310 >
307 > EOF
311 > EOF
312
313 Clean cached versions
308 $ rm -f "${extpath}c"
314 $ rm -f "${extpath}c"
315 $ rm -Rf "`dirname $extpath`/__pycache__"
316
309 $ hg up -q 1
317 $ hg up -q 1
310 $ touch z
318 $ touch z
311 $ hg ci -qAm z 2>/dev/null
319 $ hg ci -qAm z 2>/dev/null
General Comments 0
You need to be logged in to leave comments. Login now