diff tests/run-tests.py @ 24751:dc4daf028f9c

run-test: enable the devel warning during tests This should help us to catch new locking order issues as soon as possible. There are two harmless test updates (from the config change). Moreover, some bundle2 tests are displaying warning for a legitimate reason. The use of pushkey during the unbundle process may requires the 'wlock' after 'lock' (around the whole unbundle process was taken). This is non-trivial to fix, so I better have the check on, with the warning in the test than the check off. See issue4596 for details.
author Pierre-Yves David <pierre-yves.david@fb.com>
date Sun, 12 Apr 2015 09:46:03 -0400
parents 39ee0444e27c
children a2dcf460e141
line wrap: on
line diff
--- a/tests/run-tests.py	Sun Apr 12 15:37:59 2015 -0400
+++ b/tests/run-tests.py	Sun Apr 12 09:46:03 2015 -0400
@@ -705,6 +705,8 @@
         hgrc.write('commit = -d "0 0"\n')
         hgrc.write('shelve = --date "0 0"\n')
         hgrc.write('tag = -d "0 0"\n')
+        hgrc.write('[devel]\n')
+        hgrc.write('all = true\n')
         hgrc.write('[largefiles]\n')
         hgrc.write('usercache = %s\n' %
                    (os.path.join(self._testtmp, '.cache/largefiles')))